diff --git a/core/trunk/core/class/class_core_tools.php b/core/trunk/core/class/class_core_tools.php index bea7e3175cec152264210627c56742e228d58781..859f41102532bd8a264455996c8c59ff01016c26 100644 --- a/core/trunk/core/class/class_core_tools.php +++ b/core/trunk/core/class/class_core_tools.php @@ -1531,18 +1531,29 @@ class core_tools extends functions { ?> <div id="debug"> - <h2 class="tit">Debug Mode</h2> - <div class="debugheader">COOKIE</div> - <?php + <p> </p> + <p> </p> + <p> </p> + <h1 class="tit">DEBUG MODE</h1> + <h2 class="tit">Cookie</h2> + <?php $this->show_array($_COOKIE); ?> - <h2 class="tit">POST</h2> + <h2 class="tit">Session</h2> + <?php + $this->show_array($_SESSION); + ?> + <h2 class="tit">Request</h2> + <?php + $this->show_array($_REQUEST); + ?> + <h2 class="tit">Post</h2> <?php $this->show_array($_POST); ?> - <h2 class="tit">SESSION</h2> + <h2 class="tit">Get</h2> <?php - $this->show_array($_SESSION); + $this->show_array($_GET); ?> </div> <?php