Hi,
I need help with session variables. I wrote a simple login application with PHP. Here is the flow of application.
Login.php -> display login form and action will be posted to
AccountManager.php -> This will check the login information and validate user from MySQL database. (Session Started here and session variable is set with $HTTP_SESSION_VARS['ValidUser'].
I want to access this session variable in other scripts such as logout, Edit Profile etc...
Also I am using Frame Page (HTML) and want to put "Logout" and other properties in separate frame.
This session variable is not available to any other scripts or to other frames. Can anyone help me out?
Thanks