I am having problems keeping session variables. Whne I use print_r($_session) on the first page I can see my variable values, but when I go to the next page and try to access the variables using the same function, print_r($_session). I get an empty Array(). Does anyone know whats going on?
Here is the flow:
LogIn.html - variables passed to the login process page via post. (page 1)
LoginProcess.php - Session is started and variables are registered. (page 2)
Intro.php - Session Variables are accessed easily. (page 3)
Page2.php - Session variables are gone. Returns Array(). (page 4)
Thanks in advance for the help.
Here is the flow:
LogIn.html - variables passed to the login process page via post. (page 1)
LoginProcess.php - Session is started and variables are registered. (page 2)
Intro.php - Session Variables are accessed easily. (page 3)
Page2.php - Session variables are gone. Returns Array(). (page 4)
Thanks in advance for the help.