Forums / Developer / Viewing session variables
Paul Forsyth
Thursday 29 May 2003 3:48:56 am
If you want to view the session variables add this code to the end of your index.php (or whereever it is appropriate for you)
echo "Sessions: <pre>"; print_r($_SESSION);echo "</pre>";
remember to take out when you are finished :)
would be nice if this was a debug option ;)
paul