Hallo,
ich nutze dieses Script
$.ajax({
type : "POST",
data : {name:"test"},
url : "ajax.php",
async : false,
success : function(Result){
myObj = Result;
}
}
);
//ajax.php
if($_POST["name"] == "test"){
echo "text";
}
In der WebDev Console wird ausgegeben:
Notice: Undefined index: name in...ajax.php...
Warum? Was ist das Problem?
Gruß ebody