用户在其计算机上使用以下JavaScript
/运行页面Ajax
:
xmlhttp.open("POST", "ProcessRequest.php", true);
xmlhttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
xmlhttp.send(encodeURIComponent("fname=Mr.&lname=tester"));
服务器端脚本 ProcessRequest.php 似乎无法访问这些变量。
例如
$_POST['fname']
给出以下错误:
注意:未定义索引:fname
我究竟做错了什么?我正在使用 WAMP 运行它。