Hi I'm setting a session with session_set_cookie_params (time()+6480000); so the cookie should last 70 days+ but the data wasn't returned.
from looking in the manual i see that session_cache_expire is used to set or print the current value of the expire. Its set in php.ini by default to 180 minutes. So it seems that the garbage collector will clean up the session file after 180 mins or 10800 seconds which is less then i was expecting after setting the cookie life. do i need to set session_set_cookie_params (time()+6480000); session_cache_expire (6480000); for the data to still be available if the user returns during the cookies life and is this on a per session basis. Paul Roberts [EMAIL PROTECTED] ++++++++++++++++++++++++ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php