我正在尝试在我的 PHP 脚本中编写一个 MySQL,它将更新数据库中的一个字段,但是我得到了错误:
Fatal error: Wrong SQL: Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''user' SET 'currentsong' = '' WHERE 'userid' = '1893''
使用此代码时。
$setcurrentsongsql = "UPDATE 'user' SET 'currentsong' = '$currentsong' WHERE 'userid' = '$sql1'";
$setcurrentsong = $db->query($setcurrentsongsql);
我敢肯定这很简单,但我完全感到困惑。即使我只用普通字符串替换变量,它也不起作用。
预先感谢您的任何帮助。