Jump to content
  • 0

помогите с ошибкой при insert в таблицу


bgraf
 Share

Question

Добрый день всем!!

Подскажите в чем ошибка не могу разобраться

Вот типы полей в таблице

id int(11)

id_forum int(11)

th_name varchar(255) utf8_general_ci

date_create bigint(20)

user_id int(11)

lock int(1)

а вот непосредственно запрос , данные из формы .

$id_forum = $_POST[id_forum];
$th_name = htmlspecialchars($_POST[th_name]);
$create_data = time();
$user_id = $_POST[user_id];
$lock_th = $_POST[lock];
$str_unsert = "insert into tb_themes (id_forum,th_name,date_create,user_id,lock) values($id_forum,'$th_name',$create_data,$user_id,$lock_th);";
if ($res_query = mysql_query($str_unsert))
..........

а вот ошибка которую я получаю

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 'lock) values(1,'boris',1249292544,2,1)' at line 1

блин всю голову сломал , на ровном месте

Спасибо всем

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0
Добрый день всем!!

Подскажите в чем ошибка не могу разобраться

Вот типы полей в таблице

id int(11)

id_forum int(11)

th_name varchar(255) utf8_general_ci

date_create bigint(20)

user_id int(11)

lock int(1)

а вот непосредственно запрос , данные из формы .

$id_forum = $_POST[id_forum];
$th_name = htmlspecialchars($_POST[th_name]);
$create_data = time();
$user_id = $_POST[user_id];
$lock_th = $_POST[lock];
$str_unsert = "insert into tb_themes (id_forum,th_name,date_create,user_id,lock) values($id_forum,'$th_name',$create_data,$user_id,$lock_th);";
if ($res_query = mysql_query($str_unsert))
..........

а вот ошибка которую я получаю

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 'lock) values(1,'boris',1249292544,2,1)' at line 1

блин всю голову сломал , на ровном месте

Спасибо всем

Господа пордон , ну накатило походу , использовал в таблице имя поля с зарезервированным словом LOCK , все исправил все работает

Простите за открытие глупой темы

Всем спасибо

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy