pickles/classes/Viewer/Debug.php
Josh Sherman 8c14ec379d Bunch of updates to migrate from jLib to Pickles.
git-svn-id: http://svn.cleancode.org/svn/pickles@31 4d10bc64-7434-11dc-a737-d2d0f8310089
2008-08-12 01:09:07 +00:00

23 lines
396 B
PHP

<?php
class Viewer_Debug extends Viewer_Common {
public function display() {
echo '<h1>Debug</h1>' . "\n";
echo '<h2>$_REQUEST</h2>' . "\n";
echo '<pre>';
var_dump($_REQUEST);
echo '</pre>';
echo '<h2>$_SESSION</h2>' . "\n";
echo '<pre>';
var_dump($_SESSION);
echo '</pre>';
echo '<h2>$_SERVER</h2>' . "\n";
echo '<pre>';
var_dump($_SERVER);
echo '</pre>';
}
}
?>