diff options
author | Andreas Gohr <andi@splitbrain.org> | 2006-01-21 12:40:41 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2006-01-21 12:40:41 +0100 |
commit | 3aa54d7c9ec9ff4a63d08b2b25bdf7483f8d3e79 (patch) | |
tree | 98807d4425c1f565912a08c8cb910e1504bf5004 /inc | |
parent | d5afc4491d43c94e7ec682426a3bf77f6bf7eb3c (diff) | |
download | rpg-3aa54d7c9ec9ff4a63d08b2b25bdf7483f8d3e79.tar.gz rpg-3aa54d7c9ec9ff4a63d08b2b25bdf7483f8d3e79.tar.bz2 |
output session info in debug output
darcs-hash:20060121114041-7ad00-d56b28d75937bc6a4fe3a7612569498ecf344c18.gz
Diffstat (limited to 'inc')
-rw-r--r-- | inc/html.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/inc/html.php b/inc/html.php index 8ecdad749..dc50b1a45 100644 --- a/inc/html.php +++ b/inc/html.php @@ -1103,6 +1103,10 @@ function html_debug(){ print $lang['encoding']; print '</pre>'; + print '<b>$_SESSION:</b><pre>'; + print_r($_SESSION); + print '</pre>'; + print '<b>Environment:</b><pre>'; print_r($_ENV); print '</pre>'; |