Without having to call each session variable by name, is there a way to display the content of all the session variables currently set?
PHP List All Session Variables"; foreach ($_SESSION as $key=>$val) echo $key." ".$val.""; ?>