Closed. This question is off-topic。它目前不接受答案。
想改进这个问题吗?Update the question所以堆栈溢出的值小于aa>。
5年前关闭。
当我尝试更新MySQL记录时,收到以下错误:
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 'desc ='testfdsf', prezzo = 'test', img = 'upload/immagine_non_disponibile.jpg' W' at line 1

这是我的更新查询。
$q_m = "UPDATE rent_offerte SET nome = '$nome_n', desc ='$desc_n', prezzo = '$prezzo_n', img = '$target' WHERE id = '$id'";

提前谢谢。

最佳答案

Desce关键词,你需要在田里使用

$q_m = "UPDATE rent_offerte SET nome = '$nome_n', `desc` ='$desc_n', prezzo = '$prezzo_n', img = '$target' WHERE id = '$id'";

keywords list

10-06 14:14