View Single Post
Old 01-01-2008, 08:55 PM   #1 (permalink)
Tanax
The Prestige
Upcoming Programmer Inquisitive 
 
Tanax's Avatar
 
Join Date: Sep 2007
Location: Sweden, Stockholm
Posts: 1,080
Thanks: 115
Tanax is on a distinguished road
Default simple session question

Hi.

Can I set $_SESSION['something'] to the value of an array?

PHP Code:
$array = array('name' => Tanax'site' => 'TALKPHP');

$_SESSION['admin'] = $array;

echo 
$_SESSION['admin']['name']; 

???
Tanax is offline  
Reply With Quote