How can you see the assigned value of the following SESSION variable?
I run the following after start_session()
$_SESSION['login']['email'] = "ntohuh";
I get after printing with print_r($_SESSION);
( [login] => Array ( [email] => )
This question is based on this thread.
The value shows up for me. This is what I did, if it helps: