Quote
Can not create forum: 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 'desc, cat_id) VALUES ('Uus test', 'Jälle mingi jama', '2')' at line 1
I have tried:
$
query = "INSERT INTO forums (name, desc, cat_id) VALUES ('$name', '$desc', '$cat')";
$insert = mysql_query($query);
$query = "INSERT INTO forums (name, desc, cat_id) VALUES ('".$name."', '".$desc."', '".$cat."')";
$insert = mysql_query($query);
$insert = mysql_query("INSERT INTO forums (name, desc, cat_id) VALUES ('".$name."', '".$desc."', '".$cat."')");
And other this kind of things.. :/
please help me..


Sign In
Create Account

Guest_Jaan_*
Back to top










