hi. i need to keep the session active while opening a new browser window. in other words, still be looged in when opening a new window. does anyone have any thoughts on this. i've read through all the php docs but can't find a way to do it in php.ini. thanks for any suggestions.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
That should be automatic. Sessions are based on server requests. The server doesn't know the difference between one browser window and another as long as it is the same program. Just be sure that you call session_start() at the beginning of the page before you output anything. If you want to use PSA's user management, you need to include the _restrict.php file instead of session_start().
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
hi. i need to keep the session active while opening a new browser window. in other words, still be looged in when opening a new window. does anyone have any thoughts on this. i've read through all the php docs but can't find a way to do it in php.ini. thanks for any suggestions.
That should be automatic. Sessions are based on server requests. The server doesn't know the difference between one browser window and another as long as it is the same program. Just be sure that you call session_start() at the beginning of the page before you output anything. If you want to use PSA's user management, you need to include the _restrict.php file instead of session_start().