发新话题
打印

为什么PHP用updata不能更新mysql数据库?

为什么PHP用updata不能更新mysql数据库?

$str="update user set is_online=1 where name='$user_name';";
//$str="delete from user where name='$user_name';";
$result=mysql_query($str,$link_id);

哪位高人给个答案啊,用update不能更新数据库,但delete却能删掉

TOP

$result=mysql_query($str,$link_id)  or die(mysql_error());

看看返回什么错误。
换个头像,看见广告就眼红,直接封ID。

TOP

发新话题