任何人都可以告诉我为什么它没有更新mysql查询,javascript正在执行,所有工作但它只是没有更新到表帐户和行"肯定"
行值应为' 1'
任何人都可以解决它的问题
<script>
function positive(accid)
{
top.document.location.href = "myaccounts.php?job=positive&positive="+accid;
}
</script>
<?php
if(isset($_GET["job"]) && $_GET["job"] == "positive" && !empty($_GET["positive"]))
{
$account_id = mysql_real_escape_string($_GET["account_id"]);
mysql_query("UPDATE `accounts` SET `positive`= '1' WHERE account_id = '$account_id'");
}
?>
<td class="formstyle"><div align="center" style="padding:5px;">
<img src="" width="35" height="35" style="cursor: pointer;" onclick="if(confirm(\'Confirm Positive Feedback ?\')) positive(\''.$row["account_id"].'\');" /></div>
</td>
&#13;
答案 0 :(得分:-1)
您的SQL语法错误,应该连接$ account_id。