Hi I am using PHP 4 and using session management.
In my php.ini file, following are my settings
session.use_cookies = 1 ; session.name = PHPSESSID;
session.auto_start = 1 ; session.cookie_lifetime = 121 ;
I am starting session management automatically with out using session_start().
After 121 seconds my session variables expire since I told to do so.
But I want a way to reset my session variables again and give an another 121 seconds for them to expire.
Assume I set a session variable, it will be active for 121 seconds. At 120 th second, I want to keep the session active for another 121 seconds.
How should I do that?
Thanks
Dharani Ramamoorthy
Seagate Inc