您好,我正在尝试将数据发布到数据库,它可以与 get 一起使用,但不能与 post 一起使用。
这是我的javascript:
function updateShout(id)
{
var http = new XMLHttpRequest();
http.open("POST", location.href);
http.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
http.send("edit="+document.getElementById("EDITM").value+"&id="+id);
return false;
}
我正在向当前页面发出 ajax 请求:index.php?edit=message&id=X
PHP 工作正常,但我相信这行是这样的:
http.send("edit="+document.getElementById("EDITM").value+"&id="+id);
PHP(如果需要):
if($_SESSION['signedin'])
{
if(!is_blank($_REQUEST['edit'])) //if empty($value) && !is_numeric($value);
{
$id = toNum( $_REQUEST['id'] ); //if(!is_numeric($val)) return -1; return (int)$val;
$msg = htmlentities($_REQUEST['edit']); //secure dis
$query = $db->query("UPDATE shouts SET shout='$msg' WHERE shoutid='$id'");
$db->close();
exit;
}
}
请关闭..发现我的问题。我的名字而不是 id 为“EDITM”