function db_query(id)
{
$.ajax({
type: "GET",
url: "db_handler.php",
data: { row_id:id, foo: "bar" },
dataType: "html",
success: function(response){
// ...
}
});
}
嘿伙计们,我在这里做错了什么?
在我的php脚本中,我收到以字符串形式传递的变量,但是当它们作为变量传递时我无法读取它们。
$ _ GET输出:
Array
(
[foo] => bar
)