至少我认为这是我的问题^基本上,它真的很简单,我将一个 ajax 制作的 get 字符串发送到一个 php 脚本,但是该字符串显然没有被正确分解。
阿贾克斯片段:
xmlhttp.open("GET","ajaxQuery.php?name="+str+"&identifier="+id,true);
xmlhttp.send();
PHP
//variables sent from Ajax
$owner = $_GET['name'];
$identifier = $_GET['identifier'];
由于某种原因$_GET['identifier']
是空的。一个print_r($_GET)
告诉我:
Array
(
[name] => John Doeidentifier=1
)
name is John Doe
and the id
is 1,但由于某种原因,它们没有分开,据我所知,我的 Get 字符串编译正确有什么想法吗?