I'm still getting an error.
<?
session_start();
header("Cache-control: private");
print_r($_SESSION);
?>
I use this to carry all my sessions from page to page, it seems to work except for 1 thing.
When I login I get this
Array ( [userid] => 21[userlevel] => 1 [theme] => c4-blue [username] => test [cs] => No )
If I refresh the page or move to any other link i get this
Array ( [userid] => 9 [userlevel] => 1 [theme] => c4-blue [username] => test [cs] => No )
The one thing that changes is the [userid], any ideas?