Jump to content

[SOLVED] MySQL query not accepting session variable


xqx

Recommended Posts

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!

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());

 

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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.