Everything works fine when in the array of numbers, but as soon as the text appears, it stops working, what did I miss?
$array = array(1,2,3,4,5); // если $array = array('один','два','три','четыре','пять'); то в БД не загружает $query = "INSERT INTO opisanie (text) VALUES (" . implode("), (", $array) . ")"; $res = mysql_query($query);