Forums / Developer / Viewing session variables

"Please Note:
  • At the specific request of Ibexa we are changing this projects name to "Exponential" or "Exponential (CMS)" effective as of August, 11th 2025.
  • This project is not associated with the original eZ Publish software or its original developer, eZ Systems or Ibexa".

Viewing session variables

Author Message

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