As above really. I wondered if somebody left there screen for an hour and cookies wasn't set would they have to login again. Thanks
The default session TTL is 24 minutes...so if there is no activity in that time the sever side session would (*should*) be removed. Bobby
Cheers for that mate. Is there any way to access the time out from a script. Ie terminate after 3mins etc as I don't have that kind of access to my php ini file through my host. Thanks
You could handle the removing of the sessions yourself. http://us.php.net/session_save_path Or you can try to change it during scripts run time. ini_set("session.gc_maxlifetime","");