aboutsummaryrefslogtreecommitdiff
path: root/session_doctor.php
diff options
context:
space:
mode:
Diffstat (limited to 'session_doctor.php')
-rw-r--r--session_doctor.php20
1 files changed, 0 insertions, 20 deletions
diff --git a/session_doctor.php b/session_doctor.php
deleted file mode 100644
index 6c1d9b2..0000000
--- a/session_doctor.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-session_start();
-if (isset($_POST['session'])) {
- $_SESSION = json_decode($_POST['session']);
-}
-$s_json = json_encode($_SESSION);
-?>
-<html>
-<head>
- <title>session_doctor.php</title>
- <style type="text/css">* { font-family: monospace; }</style>
-</head>
-<body>
- <h1>session_doctor</h1>
- <form action="session_doctor.php" method="post">
- <textarea name="session" style="width: 80em; height: 24em;"><?=$s_json?></textarea>
- <input type="submit" />
- </post>
-</body>
-</html>