当前位置:Gxlcms > PHP教程 > 为何PHP不能接收。

为何PHP不能接收。

时间:2021-07-01 10:21:17 帮助过:17人阅读

为什么PHP不能接收。。
 $.ajax({
type: "POST",
url: "index.php",
data: "location=img_png_src",
success: function(msg){
alert( "Data Saved: " + msg );
}
});



PHP接受不了 报错了 Notice: Undefined index: location in C:\wamp\www\makebanner\index.php on line 45
------解决方案--------------------
if($_SERVER['REQUEST_METHOD'] == "POST") {
print_r($_POST);
exit();
}
?>


人气教程排行