Вот этот запрос не заносит данные в таблицу:
mysql_query("INSERT INTO `op` SET `id_user` = '$user[id]', `to` = '$to', `text` = 'textttttt', `time` = '".time()."', `read` = '0'"
Структура таблицы [red]`op`[/red]
[code]Колонка: id
Тип: int(11)
Null: not null
Колонка: id_user
Тип: int(11)
Null: not null
Колонка: to
Тип: int(11)
Null: not null
Колонка: text
Тип: varchar(200)
Null: not null
Колонка: time
Тип: int(11)
Null: not null
Колонка: read
Тип: int(11)
Null: not null[/code]
Помогите пж, что не так то?
INSERT INTO `op` (`id_user`,`to`,`text`,`time`,`read`) VALUES ('{$user['id']}','{$to}','{$text}','".time()."',0);
Почему?
Вот здесь всё норм пашет:
mysql_query("INSERT INTO `chat` SET `id_user` = '$user[id]', `to` = '$to', `time` = '".time()."', `text` = '".mysql_real_escape_string($text)."'"