I am more of a gueser than a guru, and I don't use sessions so I am not sure, but I think the session variables are stored in an array that you can grab something like this:
foreach($HTTP_SESSION_VARS as $key => $value){
echo $key.": ".$value."<br>";
}