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!

Link to comment
Share on other sites

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
Share on other sites

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.