Hi!
Ich habe den folgenden Code mit einem Ajax Post-Request. Aber irgendwie kommt der nicht an…
JavaScript:
const xml = new XMLHttpRequest;
xml.open(„POST“, „source.php“)
xml.setRequestHeader(„Content-Type“, „application/x-www-form-urlrencoded“);
xml.onload = function() {
alert(this.responseText);
}
xml.send({data: „Hallo!“});
php:
<?php
header("Content-Type:application/json;charset=utf-8");
print_r($_POST);
JavaScript-Ausgabe ist leer, ich weiß nicht warum.
Danke für jede Hilfe!
Lg