> $result = mysql_query("select user from users where id = $_SESSION['id]", 
> $db);
> That just doesn't work, so I have to first go:
> $sid = $_SESSION['id'];
> $result = mysql_query("select user from users where id = $sid", $db);
> Anyway to get around this?

I'm sure that either

mysql_query("select user from users where id = " . $_SESSION['id'], $db);

or 

mysql_query("select user from users where id = {$_SESSION['id']}", $db);

will work.

One thing to note in case you cut and pasted that first line above, you are
missing one of your single quotes around id.  That might be throwing you
off as well.

Chris


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to