View Single Post
Old 06-29-2009, 09:17 AM   #4 (permalink)
sketchMedia
The Prestige
Advanced Programmer Top Contributor Good Samaritan 
 
sketchMedia's Avatar
 
Join Date: Oct 2007
Location: Manchester, UK
Posts: 854
Thanks: 32
sketchMedia is on a distinguished road
Default

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)
sketchMedia is offline  
Reply With Quote
The Following User Says Thank You to sketchMedia For This Useful Post:
Kay1021 (06-29-2009)