diff --git a/test.php b/test.php
index 46cbc7fc347ded5758d69f257bb0ad50755a5bb1..7404032169378dc62b5a990082c21360ae006327 100644
--- a/test.php
+++ b/test.php
@@ -1,5 +1,16 @@
 <pre>
     <?php
+    print("_SERVER\n");
     print_r($_SERVER);
+    print("_GET\n");
+    print_r($_GET);
+    print("_POST\n");
+    print_r($_POST);
+
+    print("_FILE\n");
+    print_r($_FILES);
+
+    print("_COOKIE\n");
+    print_r($_COOKIE);
     ?>
 </pre>
\ No newline at end of file