这是我的代码。
<?php
$a = bacon;
$b = 20;
$c = 30;
$link = mysql_connect('localhost','root','');
mysql_select_db("test", $link);
$sql = "UPDATE share SET price=".
PrepSQL($b) . ", place=" .
PrepSQL($c) . ", time=CURRENT_TIMESTAMP where num=1 and RID=(select IID from ingredient where Ingredient='" . PrepSQL($a) . "')";
mysql_query($sql);
function PrepSQL($value)
{
// Stripslashes
if(get_magic_quotes_gpc())
{
$value = stripslashes($value);
}
// Quote
$value = "'" . mysql_real_escape_string($value) . "'";
return($value);
}
?>
我发现上面的代码不能更新数据库表。但是,如果我将 where 条件更改为 where num=1 和 RID=(select IID from ingredients where Ingredient= 'bacon' )" 那么,一切正常。那么,我的代码有什么问题吗?非常感谢!