用户使用以下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运行它。
答案 0 :(得分:0)
你的编码太多了。你需要的是这样的:
xmlhttp.send("fname=" + encodeURIComponent("Mr.") + "&lname=" + encodeURIComponent("tester"));
当然你可以使用一个函数来使它更干。