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 は、フォームに挿入する最後の 2 つのものです。