a var_dump() output looks different.
login session not behaving
Collapse
X
-
Hey.
Try creating a new PHP file int he same directory your other PHP files are and do:
[code=php]
<?php
header('content-type: text/plain');
session_start() ;
var_dump($_SESS ION);
?>
[/code]
This tells you whether the session is working, and what is in it.
Post the output here so we can see what data you are actually working with.Comment
Comment