diff options
Diffstat (limited to 'debug')
-rw-r--r-- | debug/index.php | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/debug/index.php b/debug/index.php new file mode 100644 index 0000000..eeb7ee3 --- /dev/null +++ b/debug/index.php @@ -0,0 +1,10 @@ +<?php
+
+header("Content-Type: text/plain");
+
+var_dump($_SERVER);
+var_dump($_GET);
+var_dump($_POST);
+var_dump($_COOKIE);
+
+die();
\ No newline at end of file |