unkownname Posted August 2, 2007 Share Posted August 2, 2007 Hello everyone, Ive been having problems with the following mysql and dont know why or what could someone explain. $uid=$_SESSION['uid']; mysql_query("INSERT INTO game_pm (subject,message,to,from,inbox) VALUES('$subject','d','$_POST[to]','$uid','$uid')"); mysql_query("INSERT INTO game_pm (subject,message,to,from,inbox) VALUES('$subject','d','$_POST[to]','$uid','$_POST[to]')")or die(mysql_error()); Error is 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 'to,from,inbox) VALUES('sd','d','3','2','3')' at line 1 Quote Link to comment Share on other sites More sharing options...
clearstatcache Posted August 2, 2007 Share Posted August 2, 2007 bwt ds 1... $uid=$_SESSION['uid']; mysql_query("INSERT INTO game_pm (subject,message,to,from,inbox) VALUES('$subject','d','{$_POST[to]}','$uid','$uid') "); mysql_query("INSERT INTO game_pm (subject,message,to,from,inbox) VALUES('$subject','d','{$_POST[to]}','$uid','{$_POST[to]}') ")or die(mysql_error()); Quote Link to comment Share on other sites More sharing options...
fenway Posted August 2, 2007 Share Posted August 2, 2007 My guess is that FROM ( and/or TO ) and reserved keywords... backtick them, or better yet, change them. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.