From 90d5360f4db2e933eb0a11bfef3643cd4a3b5b2b Mon Sep 17 00:00:00 2001
From: Raghav <raghavsmart1213@gmail.com>
Date: Mon, 24 Feb 2025 07:36:56 +0000
Subject: [PATCH] Tested get, post, files, cookie in test.php

---
 test.php | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/test.php b/test.php
index 46cbc7f..7404032 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
-- 
GitLab