I am having weird problem with simple insert statement.
I am trying to run following query
INSERT
INTO text_info( userid, title, desc )
VALUES ( 'userid', 'title', 'blabla' );
At first I thought there was some error in the code. Yet I have printed out the query itself and tried to run from PHPmyAdmin - GUI.
Result is the same. I am getting error in the statement.
#1064 - 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 )
VALUES ( 'userid', 'title', 'blabla' )' at line 2
Perhaps I've been coding to long and can not see it right away, so I am asking for the extra pair of eyes. Is there anything wrong with this query?