您好我正在尝试将数据发布到数据库,它正在使用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”