$id_user = $my_row['id'];
$text_news = "<img src='img/add_work_image.gif' border='0'> " . $page_news_user . " <a href='page.php?id=$author[id]'>" . $author['name'] . $author['surname']
. "</a> " . $page_news_addnewreview . " " . $work_name;
$adddate = date("Y-m-d");
$query = mysql_query("INSET INTO `news` (`id_user`,`text_news`,`add_date`) VALUES ('{$id_user}','{$text_news}','{$adddate}')",$db) 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 'INSET INTO `news` (`id_user`,`text_news`,`add_date`) VALUES ('1','
Она появляется, потому что я пытаюсь записать такой мудреный $text_name? И если да, то как правильно переменную составить?