在使用Ajax发布数据时,我有点迷失。这是我使用的代码:
ajaxRequest.open("post", "serverTime.php", true);
ajaxRequest.send(somedata);
我不确定我是如何在我的PHP脚本中获取此数据的?我怎么知道它叫什么?它只是被称为'somedata'也是如果我想使用多个变量通过?
我认为只是看起来很傻但是我真的很难找到我在互联网上寻找的东西
谢谢希望你能提供帮助。
答案 0 :(得分:3)
http://www.openjs.com/articles/ajax_xmlhttp_using_post.php
// excerpt
var url = "get_data.php";
var params = "lorem=ipsum&name=binny";
http.open("POST", url, true);
http.send(params);
在get_data.php中,您可以通过$_POST
调用它们:
echo $_POST['lorem']; // == ipsum
echo $_POST['name']; // == binny
此处示例:http://www.openjs.com/scripts/examples/ajax_using_post.php