我想在我的PHP腳本將在更新數據庫中的字段寫一個MySQL,但是我得到的錯誤: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);
我敢肯定這是簡單的事情,但我完全困惑不解。即使我用普通字符串替換變量,它也不起作用。
非常感謝您的幫助。
刪除'''周圍的用戶,surroundong等,並再次測試。 – michi