Is there a simple way to display all session variables? Like the code below I use in debug for all posted variables:

echo "<h3>posted variables</h3>";
 while (list($name, $value) = each($HTTP_POST_VARS)) {
   echo "$name = $value<br>\n";
 }

bye

Ronald

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to