I thought I had a good grasp of sessions until...
I have several scripts where I initialize a session and pass user_id, password along to different pages. My problem is that if the user never closes out the browser and a different user logs into the site, it pulls up the previous user's information.
I've looked at session_destroy(), session_unset(), and $_session = array(); but no luck.
Is this something in the php.ini file or apache.conf file?
I am using PHP4.3.1 and Apache 1.3.27.
Any suggestions would be great.
I have several scripts where I initialize a session and pass user_id, password along to different pages. My problem is that if the user never closes out the browser and a different user logs into the site, it pulls up the previous user's information.
I've looked at session_destroy(), session_unset(), and $_session = array(); but no luck.
Is this something in the php.ini file or apache.conf file?
I am using PHP4.3.1 and Apache 1.3.27.
Any suggestions would be great.