Admin Ajax gibt 0
-
-
Haben Sie überprüft,ob Ajaxurl richtigeingestelltist?Have you verified that ajaxurl is set properly?
- 1
- 2013-04-27
- Andrew Bartel
-
Zeigt Ihre Browserkonsole Fehler an?Wennja,was sind sie?Does your browser console show any errors? If so, what are they?
- 0
- 2013-04-27
- s_ha_dum
-
jQuery ('. cl_link_buttons'). val ('id'). click (function () `sieht seltsam aus.`jQuery('.cl_link_buttons').val('id').click(function()` looks odd.
- 2
- 2013-04-27
- fuxia
-
Andrew,ja,ichglaubeesist richtig. Die Anforderungs-URLin Chrome Inspector zeigt die Domain/wp-admin/admin-ajax.php anAndrew, yes I believe it is correct, the request url in Chrome Inspector is showing domain/wp-admin/admin-ajax.php
- 0
- 2013-04-27
- Apina
-
@s_ha_dum Es werden keine Fehler angezeigt@s_ha_dum No errors showing
- 0
- 2013-04-27
- Apina
-
@toscho Vielleicht siehtes seltsam aus,es war dieeinzige Möglichkeit,die Element-IDbeim Klicken zuerhalten,undeserledigt den Job. Der Code zeigt auch,dasses diese Daten hat. Wiederumist das Problem,eine Antwort vom PHP zuerhalten.@toscho Perhaps it does look odd, it was the only way I could think of getting the elements ID on click, and it does do the job, the code also shows it has that data, again issue is getting a response from the php.
- 0
- 2013-04-27
- Apina
-
Siehe auch [Debuggen von AJAXmit HTTP] (http://wordpress.stackexchange.com/a/96556/73).See also [how to debug AJAX with HTTP](http://wordpress.stackexchange.com/a/96556/73).
- 0
- 2013-04-27
- fuxia
-
Esistnichterforderlich,"false" zurückzugeben.Wenn SiejQuery verwenden,verwenden Sie stattdessen http://api.jquery.com/event.preventdefault/.There is no need to `return false`. If using jQuery, use http://api.jquery.com/event.preventdefault/ instead.
- 0
- 2015-10-26
- Solomon Closson
-
14 Antworten
- Stimmen
-
- 2013-04-28
Also habeiches herausgefunden.Es warnicht diejQuery als solche,obwohlich das verbessert habe,sondern die Platzierung der Rückruffunktion.Ich habeesin die Haupt-Plugin-Datei verschoben undes hatfunktioniert.
So I worked it out. It was not the jQuery as such though I have improved that, it was the placement of the call back function. I moved it over to the main plugin file and it worked.
-
Kannst du zeigen,wie duesgemacht hast?can you show how did you do it ?
- 4
- 2014-01-27
- Francisco Corrales Morales
-
Ich habe dasgleiche Problem. Können Sie zeigen,wie Sie dieses Problembehoben haben?I am having this same issue, could you show how you fixed this?
- 1
- 2014-03-08
- Jeremy
-
Eine andere Antwortfinden Sie hier: http://wordpress.stackexchange.com/a/131397 @ JeremyAnother answer is here: http://wordpress.stackexchange.com/a/131397 @Jeremy
- 0
- 2014-03-26
- Francisco Corrales Morales
-
- 2013-07-27
Eine
0
Antwortbedeutetentweder,dass die Aktionnichtfestgelegtist (in den Ajax-Daten) oder dass die Rückruffunktion der Aktionnichtgefunden werden kann.A
0
response means either that the action is not set (in the ajax data) or that the action's callback function cannot be found.-
Ja,dasist die richtige Antwort.Alles,was das Hinzufügen von die () am Endebewirkt,ist das Beenden des Skripts.Diese Antwortisttechnisch korrekt,wenn 0 an das ENDE der Ausgabe angehängt wird. Wenn Siejedochnur '0'erhalten,bedeutet dies,dassnichts zurückgegeben wurde und Sieeinen Fehler haben,wiein dieser Antwortbeschrieben.Yeah, this is the correct answer. All adding die() to the end does, is terminate the script. That answer is technically correct if you're seeing 0 appended to the END of the output, however if all you get is '0', then it means nothing was returned, and you have an error as described in this answer.
- 2
- 2014-05-11
- Hybrid Web Dev
-
Oder Sie habenin der PHP,die die Ajax-Anfragebearbeitet,absichtlichnichts zurückgegeben.Stellen Sie sicher,dass Sieetwas wiedergeben,andernfalls verwenden Sie ".always",umes zuerfassen.Or you just returned nothing on purpose in the php that handles the ajax request. Be sure to echo something out, otherwise, use `.always` to capture it.
- 0
- 2015-10-26
- Solomon Closson
-
- 2014-01-27
Siemüssen am Ende Ihrer Funktion
die();
hinzufügen.Den Grund undmehrfinden Sie hier: http://codex.wordpress.org/AJAX_in_Plugins
Hinweise:
- Sie sollten
echo
,bevor Siedie
ausführen.Dies verhindert Serverfehler und hilftbeim Debuggen.
What you have to do is add
die();
at the end of your function.See the reason and more here: http://codex.wordpress.org/AJAX_in_Plugins
Notes:
- You should
echo
something before executingdie
. This will prevent server errors, and will help when debugging.
-
Diesist die Antwort auf das WP AJAX 0-Problem.This is the answer to the WP AJAX 0 problem.
- 10
- 2014-03-26
- Ben Racicot
-
Wenn Sienur "die ()" hinzufügen,ohneetwas zu wiederholen,erhalten Sie außerdemeinen 500 Internal Server Error undgeben "0"für "wp-admin/admin-ajax.php" zurück.Sie solltenimmeretwas wiedergeben,auch wenn Sienur Wertefestlegen undnichts zurückgegeben werdenmuss.Andernfallsmüssen Sie,wenn Sienichts wiedergeben und "die ()" verwenden,".always ()" verwenden,umes zuerfassen,daesnichtin ".done ()",sondernin ".fail ()"enthaltenistweiles ohneirgendetwas stirbt=500 Fehler.Actually, if you just add `die()` without echoing something out, this will also give you a 500 Internal Server Error, and return `0` for `wp-admin/admin-ajax.php`. You should always echo out something, even if you are just setting values and nothing is needed to be returned. Otherwise, if you echo nothing and `die()`, you have to use `.always()` to capture it, cause it will not be in `.done()`, it will be in `.fail()` because it dies without anything = 500 Error.
- 0
- 2015-10-26
- Solomon Closson
-
Haben Sieeinige Links oder Arbeitscode,damit wireinen Blick darauf werfen können?@SolomonClossondo you have some links, or working code, so we can take a look ? @SolomonClosson
- 0
- 2015-10-26
- Francisco Corrales Morales
-
Allemeine Antworten wurdenin Live-Umgebungengetestet.Esist sehreinfach,dies zutesten. Führen Sieeinfachein `die ();`in der Ajax-Funktionin der Datei `functions.php` aus,ohne vorheretwas zu wiederholen,und rufen Sie die Aktion über Ajax auf,z. B.:` Vartesting=$.ajax (...);testing.fail (Funktion (Antwort) {console.log ('Fehlgeschlagen' + Antwort);});testing.done (Funktion (Antwort) {console.log ('Erfolg' + Antwort);});testing.always (Funktion (Antwort) {console.log ('Ajax-Anforderung abgeschlossen:' + Antwort);}); `All my answers have been tested in live environments. It's very simple to test this, just do a `die();` in the ajax function in the `functions.php` file without echoing out anything prior to this, and call the action via ajax, e.g.: `var testing = $.ajax( ... ); testing.fail(function(response) { console.log('Failed ' + response); }); testing.done(function(response) { console.log('Success ' + response); }); testing.always(function(response) { console.log('Ajax Request complete: ' + response); });`
- 0
- 2015-10-26
- Solomon Closson
-
Sie werdenfeststellen,dass "Fehlgeschlagen" angezeigt wird. Die Antwort lautet "500 Internal Server Error".You will notice, Failed will show up, the response will be a 500 Internal Server Error.
- 0
- 2015-10-26
- Solomon Closson
-
Wenn Sie der PHP-Funktion kurz vor "die ()"ein Echo hinzufügen,ist die Antwort dann das Echo-Ergebnis.Than add an echo to the PHP function just before you `die();`, the response will than be the echo'd result.
- 0
- 2015-10-26
- Solomon Closson
-
Ich habe diesmit `dataType`getestet,das auf` HTML`eingestelltist. Ichbin mirnicht sicher,ob andere Datentypenetwas anderes zurückgeben oder waspassiert,wennesnichtfestgelegtist,da versucht wird,den Datentypgründlich zuerraten.IMO,esisteinfach ambesten,immeretwas auszugeben,auch wennes sich umeine Zeichenfolge handelt,die "Erfolg" oder "Misserfolg" sagt.I tested this with `dataType` set to `HTML`, not sure if other datatypes return something different tho, or what happens when it is not set, since it will attempt to take an educated guess at the data type. IMO, it's just best to output something always, even if it's a string that says 'success' or 'failure'.
- 0
- 2015-10-26
- Solomon Closson
-
- 2014-05-11
Ich habe dasgleiche Problem.Undesgelöst.Siemüssen die Variable "action" wieim Beispiel senden:
var dataString = {lat: '55.56', lng: '25.35', action:'report_callback'}; $.ajax({ url: "http://domain.net/wp-admin/admin-ajax.php", type: "POST", //some times you cant try this method for sending action variable //action : 'report_callback', data:dataString, success: function(data){ console.log(data); }, error: function() { console.log("Error"); } });
Weilin wp-admin/admin-ajax.php der Handlerfür die Aktionsvariableist:
if ( empty( $_REQUEST['action'] ) ) {...} Line 26
I got same problem. And solved it. You must send "action" variable like in example:
var dataString = {lat: '55.56', lng: '25.35', action:'report_callback'}; $.ajax({ url: "http://domain.net/wp-admin/admin-ajax.php", type: "POST", //some times you cant try this method for sending action variable //action : 'report_callback', data:dataString, success: function(data){ console.log(data); }, error: function() { console.log("Error"); } });
Because in wp-admin/admin-ajax.php is handler for action variable:
if ( empty( $_REQUEST['action'] ) ) {...} Line 26
-
Das OP ___does___ sendeteinen `action` Parameter.Während diesfür Sie vielleichtfunktioniert hat,wares hiernicht das Problem.The OP ___does___ send an `action` parameter. While this may have worked for you it was not the problem here.
- 4
- 2014-05-11
- s_ha_dum
-
- 2016-03-29
Ich hatte auch dieses Problem undes war die Tatsache,dassichin meiner PHP-Funktion
return
anstelle vonecho
verwendete.Durch Änderninecho
wurde das Problembehoben.function doAjax() { $result = getPosts(); echo json_encode($result, true); die(); }
I had this problem too, and it was the fact that I was using
return
instead ofecho
in my PHP function. Changing it toecho
fixed it.function doAjax() { $result = getPosts(); echo json_encode($result, true); die(); }
-
- 2013-04-27
Versuchen Sie,diesen Code auf der Konsole auszuführen
jQuery.post(ajaxurl, {action:'cleanlinks_ajax_get_post_data'}, function(response) { console.log (response); });
Ich kann viele Fehler an Ihrem JavaScript-Codefeststellen,und das könnte der Grund sein.
Try running this code on the console
jQuery.post(ajaxurl, {action:'cleanlinks_ajax_get_post_data'}, function(response) { console.log (response); });
I can see many things wrong about your JavaScript code and that might be the reason.
-
Nun,es kommen viele Dinge auf,dieichnichtganz verstehe.Wasich verstehe: ReadyState 4,Status 200,responseText "0". Und dann kommtesmit der Antwort 0. Wennesetwas Bestimmtesgibt,nach demich hier suchen sollte? Wennes Problememit dem Codegibt,weisen Siebitte darauf hin undich kann sie untersuchen. Ich lerneimmernochjQuery.Well it is coming up with a lot of things I dont fully understand. What I do understand: ReadyState 4, status 200, responseText "0". And then it comes up with the response 0. If there something in specific I should be looking for here? If there are issues with the code, please point them out and I can look into them, I am still learning jQuery.
- 0
- 2013-04-27
- Apina
-
Läuft Ihre Website live?do you have your site running live?
- 0
- 2013-04-27
- Omar Abid
-
Nein,esist localhostNo, it's localhost
- 0
- 2013-04-27
- Apina
-
Schwer zuerzählen.Könnten Sie versuchen,console.info (ajaxurl) auszuführen?und sehen,wasesgibt?Hard to tell. Could you try running console.info(ajaxurl); and see what it gives?
- 0
- 2013-04-27
- Omar Abid
-
/wp-admin/admin-ajax.phpist die Antwort bearbeiten - /wp-admin/admin-ajax.php nicht definiert/wp-admin/admin-ajax.php is the response edit -- /wp-admin/admin-ajax.php undefined
- 0
- 2013-04-27
- Apina
-
Versuchen Sie,Ajaxurl durch 'http://localhost/wp-admin/admin-ajax.php' zuersetzen,und sehen Sie,wasesgibttry replacing ajaxurl with 'http://localhost/wp-admin/admin-ajax.php' and see what it gives
- 1
- 2013-04-27
- Omar Abid
-
Keine direkte Lösung,aber diese Antwort sollte aufjeden Fall überprüft werden,umeine Lösungfür das OP zufindenNot a direct solution, but this answer is something one should definitely cross-check for a solution to the OP
- 0
- 2016-01-07
- Nirav Zaveri
-
- 2016-07-18
Ich hatte dasgleiche Problem. Umes zubeheben,habeich
wp_die ()
am Endemeiner Funktion direktnacheinem Echo
.Vergessen Sienicht,Ihre Aktionin Ihrem Skript zu übergeben.Überprüfen Sie sicher,ob Ihre Funktion
wp_ajax_nopriv
wiewp_ajax
.I had the same problem, to fix it I used
wp_die()
at the end of my function just after anecho
. Don't forget to pass your action on your script.To be sure, check if your function has to use
wp_ajax_nopriv
likewp_ajax
. -
- 2017-04-27
Nur als Referenzfür alle,die hierher kommen undgoogeln "Ajax-Anfragegibt 0 zurück": Denken Sie daran,wenn Sie der Methode des Objektseine Ajax-Aktion hinzufügen,um sicherzustellen,dass der Modifikatorfür den Methodenzugriff
public
ist.add_action( 'wp_ajax_my_action', [$object, 'my_method']);
add_action
wirdnur stummgeschaltet,wenn Ihre Methodenicht außerhalb von$object
aufgerufen werden kann.Just for reference, for anyone who get here googling "ajax request is returning 0": Remember when you add ajax action to object's method to be sure methods access modifier is
public
.add_action( 'wp_ajax_my_action', [$object, 'my_method']);
add_action
just silences if it can't call your method outside of$object
. -
- 2017-10-17
Wenn Sie die Funktion wp_localize_script ()nicht zum Festlegen der Ajax-URL verwenden,gibt admin ajax 0 zurück. Ich denke,esistein Wordpress-Fehler.Hieristein Beispiel:
wp_enqueue_script( 'search_js', get_template_directory_uri() . '/js/search.js', array( 'jquery' ), null, true ); wp_localize_script( 'search_js', 'ajaxurl', admin_url( 'admin-ajax.php' ) );
Die Javascript-Datei (search.js):
$('#search_input').autocomplete({ source: function(request, response) { $.ajax({ type: 'POST', dataType: 'json', url: ajaxurl, data: 'action=my_custom_action_search&search_criteria=' + request.term, success: function(data) { response(data); }, error: function(errorThrown){ console.log(errorThrown); } }); }, minLength: 3 });
If you don't use wp_localize_script() function to set ajax url, admin ajax returns 0. I think it's Wordpress bug. Here's is an example :
wp_enqueue_script( 'search_js', get_template_directory_uri() . '/js/search.js', array( 'jquery' ), null, true ); wp_localize_script( 'search_js', 'ajaxurl', admin_url( 'admin-ajax.php' ) );
The javascript file (search.js) :
$('#search_input').autocomplete({ source: function(request, response) { $.ajax({ type: 'POST', dataType: 'json', url: ajaxurl, data: 'action=my_custom_action_search&search_criteria=' + request.term, success: function(data) { response(data); }, error: function(errorThrown){ console.log(errorThrown); } }); }, minLength: 3 });
-
- 2018-03-22
jQuery(document).ready(function(){ jQuery('.cl_link_buttons').val('id').click(function() { $.ajax({ type:'POST', url: ajaxurl, data: { action : 'ajax_filter', currentid : 'currentid' }, success: function (result) { console.log(result); $result = $(result); $result.fadeIn('7000'); $("#showresults").html(result); }, error: function (xhr, status) { alert("Sorry, there was a problem!"); }, complete: function (xhr, status) { $('#showresults').slideDown('slow') } }); }); });
//Codefunktionphp
<?php add_action( 'wp_ajax_nopriv_ajax_filter', 'ajax_filter' ); add_action( 'wp_ajax_ajax_filter', 'ajax_filter' ); function ajax_filter(){ $date = isset($_POST['date']) ? $_POST['date'] : 0; echo $date; die(); } ?>
jQuery(document).ready(function(){ jQuery('.cl_link_buttons').val('id').click(function() { $.ajax({ type:'POST', url: ajaxurl, data: { action : 'ajax_filter', currentid : 'currentid' }, success: function (result) { console.log(result); $result = $(result); $result.fadeIn('7000'); $("#showresults").html(result); }, error: function (xhr, status) { alert("Sorry, there was a problem!"); }, complete: function (xhr, status) { $('#showresults').slideDown('slow') } }); }); });
//code function php
<?php add_action( 'wp_ajax_nopriv_ajax_filter', 'ajax_filter' ); add_action( 'wp_ajax_ajax_filter', 'ajax_filter' ); function ajax_filter(){ $date = isset($_POST['date']) ? $_POST['date'] : 0; echo $date; die(); } ?>
-
Nur den Code zupostenistnichtgut. Können Siebitte erklären,was dieser Codebewirkt?Just posting code is not good, can you please explain what this piece of code does?
- 0
- 2018-03-22
- bravokeyl
-
wichtig: $ date=isset ($ _ POST ['date'])?$ _POST ['Datum']: 0; Und Funktion sterben ();important: $date = isset($_POST['date']) ? $_POST['date'] : 0; And function die();
- 0
- 2018-03-22
- Ngocheng
-
- 2019-11-10
Diejenigen,die Fehler 0erhalten :),action=> 'action'
var data = { 'action': 'firmabilgilerikaydet', 'data': form_data }; $.post(ajaxurl, data, function(response) { alert(response); });
Those who get error 0 :), action => 'action'
var data = { 'action': 'firmabilgilerikaydet', 'data': form_data }; $.post(ajaxurl, data, function(response) { alert(response); });
-
- 2020-06-02
Wenn Sie localhost verwenden und sich Ihr PHP-Server-Codein einer Plugin-Dateibefindet,melden Sie sich zuerstbeim Admin-Dashboard an und aktualisieren Sie die Plugin-Seite.Überprüfen Sie zweitens,ob das Plugin aktiviertist.Gehen Sie dann zum Frontend und aktualisieren Siees und versuchen Sieeserneut.
If you are using localhost and your php server side code is in a plugin file first login to admin dashboard and refresh the plugin page. Secondly, check if the plugin is activated. Then go to frontend and refresh and try sending again.
-
- 2017-03-22
SIE VERSUCHEN: add_action ('init','ly_form_ajax_init'); Funktion ly_form_ajax_init () { wp_register_script ('ly-form-ajax-script',plugins_url (). '/ly-form/js/ly-script.js',array ('jquery')); wp_enqueue_script ('ly-form-ajax-script'); wp_localize_script ('ly-form-ajax-script','ly_form_ajax_object',array ( 'ajaxurl'=> admin_url ('admin-ajax.php'), 'redirecturl'=> home_url (), 'loadmessage'=> __ ('') )); }} //Aktionist: contact_ajax add_action ('wp_ajax_contact_ajax','my_function'); add_action ('wp_ajax_nopriv_contact_ajax','my_function'); Funktionmy_function () { ob_clean (); Echo "http://sanvatvungcao.com"; wp_die (); }} /** * Funktionscode aufeiner Seite wie dieser: [ly-form] * @param Typ $ atts * @param Typ $ Inhalt * @return string */ Funktion ly_form_shortcode ($ atts,$ content="") { echo html_form_code (); }} add_shortcode ('ly-form','ly_form_shortcode'); //HTML-Formular wird angezeigt, Funktion html_form_code () { $ html=""; $ html.=''; $ html.=''; $ html.='
Họ *m *
'; $ html.='Tên *
'; $ html.='ỉa chỉ *
'; $ html.='E-Mail *
'; $ html.='Nội dung * dg
'; $ html.=''; $ html.=''; $ html.=''; $ html.=''; return $ html; }} UND HIERjs (ly-script.js): (Funktion ($) { $ (Dokument) .ready (Funktion () { //AJAX-Formular senden $ ('form.ly-form-ex'). on ('submit',Funktion (e) { e.preventDefault (); $ ('# laden'). html ('Laden ...'); var dataString={action: 'contact_ajax'}; $ .ajax ({ Typ: "POST", URL: ly_form_ajax_object.ajaxurl, Daten: dataString, Erfolg: Funktion (Daten) { $ ('# load'). html (Daten); }, Fehler: Funktion (errorThrown) { alert (errorThrown); }} }); }); });//fertigbeenden }) (jQuery);Ich hoffe,esist hilfreichfür Sie, Ambesten
YOU TRY: add_action('init', 'ly_form_ajax_init'); function ly_form_ajax_init() { wp_register_script('ly-form-ajax-script', plugins_url().'/ly-form/js/ly-script.js' , array('jquery')); wp_enqueue_script('ly-form-ajax-script'); wp_localize_script('ly-form-ajax-script', 'ly_form_ajax_object', array( 'ajaxurl' => admin_url('admin-ajax.php'), 'redirecturl' => home_url(), 'loadingmessage' => __('') )); } // Action is: contact_ajax add_action( 'wp_ajax_contact_ajax', 'my_function' ); add_action( 'wp_ajax_nopriv_contact_ajax', 'my_function' ); function my_function(){ ob_clean(); echo "http://sanvatvungcao.com"; wp_die(); } /** * Short code in page like this: [ly-form] * @param type $atts * @param type $content * @return string */ function ly_form_shortcode($atts, $content = "") { echo html_form_code(); } add_shortcode('ly-form', 'ly_form_shortcode'); //HTML Form will show, function html_form_code() { $html = ""; $html.= ''; $html.= ''; $html.= '
Họ đệm *
'; $html.= 'Tên *
'; $html.= 'Địa chỉ *
'; $html.= 'Email *
'; $html.= 'Nội dung * dg
'; $html.= ' '; $html.= ''; $html.= ''; $html.= ''; return $html; } AND HERE js (ly-script.js): ( function( $ ) { $(document).ready(function () { // Perform AJAX form submit $('form.ly-form-ex').on('submit', function(e){ e.preventDefault(); $('#loading').html('loading...'); var dataString = {action:'contact_ajax'}; $.ajax({ type: "POST", url: ly_form_ajax_object.ajaxurl, data: dataString, success: function (data) { $('#loading').html(data); }, error: function (errorThrown) { alert(errorThrown); } }); }); }); // end ready } )( jQuery );Hope it is helpful for you, Best
-
- 2013-09-23
Versuchen Sie,eine
if
-Anweisung hinzuzufügen:function my_function(){ $id = $_POST['variation_id']; if(isset($_POST['variation_id'])) { //your coded function die(); } }// end function
Try adding an
if
statement:function my_function(){ $id = $_POST['variation_id']; if(isset($_POST['variation_id'])) { //your coded function die(); } }// end function
-
Wie würde das das Problem lösen?Notieren Sie die akzeptierte Antwort und den Originalcode.How would that solve the problem? Note the accepted answer and the original code.
- 1
- 2013-09-23
- fuxia
Ichbin relativneuin jQuery undinsbesonderein AJAX. Ich habeein kleines Problem damit,dass der Rückgabewertimmer 0ist,obwohlich denke,dass diestatsächlich die Erfolgsmeldungist undnichts zurückgibt.
Ich habe den Google-Vers durchsucht undich habe die Funktion die ()im PHP-Rückruf undichglaube,die add_actions sind korrekt.
Ich arbeite aneinem lokalen Host,obwohlichbezweifle,dass dies Auswirkungen hat,und dies allesim Administrator,nichtim Front-End. Ich habe auch überprüft,ob dasjsin die Warteschlangegestellt und lokalisiertist.
Im Chrome-Entwicklerbereich wird die Meldung 200 OK angezeigt.
Ich habe auch dasgrundlegende AJAX von http://codex.wordpress.org/AJAX_in_Plugins getestet undes hat auch 0 zurückgegeben. Ichfragemich daher,obes sich umetwas anderes als den untenbeschriebenen Code handelt.
Im Moment versucheichnur,etwas an diejQuery zurückzusenden. Jede Hilfe wäre dankbar.
DiejQuery
Das PHP