xqx Posted August 1, 2008 Share Posted August 1, 2008 I'm trying to run this query. My MySQL connection is fully functional and everything, but whenever I run this code -- $sql = "INSERT INTO topics(title, body, user_id) VALUES('" . $_POST['title'] . "', '" . $_POST['message'] . "', " . $_SESSION['USERID'] . ")"; mysql_query($sql) or die(mysql_error()); -- I get an 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 ')' at line 1 I don't know if it's the fact that I'm using a session variable or what (I tested that the session variable was valid already). Does anybody know what's wrong? Thanks! Link to comment https://forums.phpfreaks.com/topic/117674-solved-mysql-query-not-accepting-session-variable/ Share on other sites More sharing options...
paul2463 Posted August 1, 2008 Share Posted August 1, 2008 you did it for all the rest so why did you not put single ticks around the last sessions variable? try $sql = "INSERT INTO topics(title, body, user_id) VALUES('" . $_POST['title'] . "', '" . $_POST['message'] . "', '" . $_SESSION['USERID'] . "')"; mysql_query($sql) or die(mysql_error()); Link to comment https://forums.phpfreaks.com/topic/117674-solved-mysql-query-not-accepting-session-variable/#findComment-605289 Share on other sites More sharing options...
xqx Posted August 1, 2008 Author Share Posted August 1, 2008 Because it's a number, and I was under the impression you didn't have to put ticks around numbers (I could be wrong, of course). When I add ticks, I don't get an error, but there is no value in the user_id field. EDIT: I just realized I hadn't added session_start() to the beginning of my document! XP Thanks anyway. Link to comment https://forums.phpfreaks.com/topic/117674-solved-mysql-query-not-accepting-session-variable/#findComment-605293 Share on other sites More sharing options...
cooldude832 Posted August 1, 2008 Share Posted August 1, 2008 quoting a variable in mysql never really hurts you 90% of the time. Link to comment https://forums.phpfreaks.com/topic/117674-solved-mysql-query-not-accepting-session-variable/#findComment-605297 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.