From 9b55729c91f7e054381df406481d9bf8e2a5ab3b Mon Sep 17 00:00:00 2001 From: Matt Pass Date: Mon, 30 Jun 2014 08:01:08 +0100 Subject: [PATCH] Session ID added to output --- test.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.php b/test.php index 295451d..62366ac 100644 --- a/test.php +++ b/test.php @@ -28,7 +28,7 @@ echo "



"; if(!isset($_SESSION)) {@session_start();} -echo 'TEST 2 of 3: Sessions:
These values should all be the same:

'; +echo 'TEST 2 of 3: Sessions:
Session ID: '.session_id().'. These values should all be the same:

'; echo '
SESSION, BEFORE SET:
'.$_SESSION["string"]."
"; if (!isset($_GET["string"])) { $_SESSION["string"] = md5(uniqid(mt_rand(), true));