我有一个 mysql 表,其中有一列名为已批准。如果我使用 mysql 脚本 update tablename set columnname=1 where id=x where x is an integer number,一切正常。问题是当我尝试通过 PHP 使用这个脚本时,我有以下脚本:
$id = mysql_escape_string($_GET["id"]);
if(true){
$update = 'update tablename set approved=1 where id='.$id;
mysql_query($update);
echo $update;
echo '<br />database updated :)';
} else {
echo 'An error occured';
}
//mysql_close($con);
更新不起作用的地方..
在我看来,我在某个地方有问题,所以为什么这不起作用?你有什么想法??
先感谢您