Which PHP session settings are incorrect here?
- by Greg McNulty
I see the savepath has no value but does it default to something? Are the other values OK? I have access to the server and PHP files but how and what do I change?
The specific issue -
On page 1:
session_start();
$_SESSION['uType']=$row['usertype']; //save user type to session
print_r($_SESSION); //Prints the user type successfully
On page 2:
…