diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -1,7 +1,15 @@ <?php -header("Content-Type: text/text"); +/*require_once(dirname(__FILE__) . "/ratatoeskr/main.php"); +ratatoeskr();*/ +header("Content-type: text/plain"); +print "\$_POST:\n"; +print_r($_POST); +print "\n\n\$_GET:\n"; +print_r($_GET); +print "\n\n\$_REQUEST:\n"; print_r($_REQUEST); - +print "\n\n\$_SERVER:\n"; +print_r($_SERVER); ?> |