$ sql =“ UPDATE'load'SET'graphe'=”。$ graphe。“','intersection'='”。$ intersection。“','ville'='”。$ ville。“'其中id =' “。$ id。”'“;
我在搜索后使用了上面的代码,此人说它纠正了语法。
当我运行它时,我会失败。
谢谢
皮特
最佳答案
将'更改为'并在'。$ graphe之前插入'
$sql = "UPDATE `load` SET `graphe`='".$graphe."',`intersection`='".$intersection."',`ville`='".$ville ."' where id='".$id."'";
关于mysql - mysql_query的更新语法有问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23305658/