06-29-2009, 09:17 AM
|
#4 (permalink)
|
|
The Prestige
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
|
Well technically you can only have one session per ... well ... session, however a session in PHP is essentially an array so you can have multiple values (session variables):
PHP Code:
$_SESSION['login_thing'] = true; $_SESSION['something_else'] = 'turtles';
__________________
mysql> SELECT * FROM `users` WHERE `users`.`clue` > 0;
Empty set (0.00 sec)
|
|
|
|