petermeachem
Programmer
This should be easy.
In login.php I've got
session_start();
echo $_POST['username'];
$HTTP_SESSION_VARS["username"] = $_POST['username'];
I used $HTTP_SESSION_VARS as none of the other methods I found worked. This seemed to work 1/2 an hour ago, but I now get a blank session file. The echo gives the correct value for username of admin.
In login.php I've got
session_start();
echo $_POST['username'];
$HTTP_SESSION_VARS["username"] = $_POST['username'];
I used $HTTP_SESSION_VARS as none of the other methods I found worked. This seemed to work 1/2 an hour ago, but I now get a blank session file. The echo gives the correct value for username of admin.