pickles/classes/Viewer/Debug.php
Josh Sherman 046d265347 Added the new classes and stuff.
git-svn-id: http://svn.cleancode.org/svn/pickles@30 4d10bc64-7434-11dc-a737-d2d0f8310089
2008-07-12 23:28:44 +00:00

15 lines
214 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>';
}
}
?>