mysql錯誤
sql語句
$insert="insert into forum set name='$name',description='$description',order='$order',open='$open'";
錯誤報告
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 'order='1',open='0'' at line 1
在插入數據庫時,只插入前兩個字段沒有問題
最佳答案[url=http://www.111cn.cn/bbs/space.php?username=一起的榮耀]鏈接標記一起的榮耀[/url]
[url=http://www.111cn.cn/bbs/space.php?uid=129958]鏈接標記[img]http://www.111cn.cn/server/avatar.php?uid=129958&size=small[/img][/url]insert into forum set `name`='administrator',`description`='撒旦撒大師的',`order`='1',`open`='1';
看看
order 是關鍵字
附件: 您所在的用戶組無法下載或查看附件
D8888D回貼內容-------------------------------------------------------
insert into forum set `name`='administrator',`description`='撒旦撒大師的',`order`='1',`open`='1';
看看
order 是關鍵字
D8888D回貼內容-------------------------------------------------------
你把$insert 輸出一下檢查看看
D8888D回貼內容-------------------------------------------------------
insert into forum set name='administrator',description='撒旦撒大師的',order='1',open='1'
D8888D回貼內容-------------------------------------------------------
order='1',open='1'錯誤就出在這兒
D8888D回貼內容-------------------------------------------------------
還真的是語法錯誤: INSERT INTO table_name
VALUES (value1, value2, value3,...)
復制代碼INSERT INTO table_name (column1, column2, column3,...)
VALUES (value1, value2, value3,...)
復制代碼
D8888D回貼內容-------------------------------------------------------
明白了
D8888D回貼內容-------------------------------------------------------
是啥問題呀說下子...
D8888D回貼內容-------------------------------------------------------
order 是關鍵字
D8888D回貼內容-------------------------------------------------------
[img]http://www.111cn.cn/bbs/images/smilies/default/dizzy.gif[/img]