Click to See Complete Forum and Search --> : check session names.....


mahfooz
03-01-2008, 04:42 AM
HI!

is it possible to check which session names are register in webpage, while i don't know the session names


e,g;

there are three sessions running at the same time in a webage, and i only know one session name, others two are not known by me. the question is this how to come to know the other two session names

thanks in advance...

scragar
03-01-2008, 06:33 AM
$names = array();
foreach($_SESSION as $key=>$val)
$names[] = $key;

// proof:
print_r($names);