我正在尝试在 PHP 中创建一些基本的插入查询,它一直在给我一个错误,但我真的不知道为什么,你们可以看看有什么问题吗?
mysql_query("
INSERT INTO itens (nome, data, cliente, link, desc, img) VALUES ($nome,$data,$cliente,$link,$desc,$img)
") or die(mysql_error());
更新
从 OP 的已删除答案中提取,代码现在是:
mysql_query("INSERT INTO itens (nome, data, cliente, link, `desc`, img)
VALUES ($nome,$data,$cliente,$link,$desc,$img)") or die(mysql_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 'kl,j)' at line 2
kl 和 j 是我在表格中插入的最后两件事。