i have my session.cookie_lifetime set to 0 does that mean that any variable i store as a session on the server like
would be set for ever or does it loose its value after a given period of time?Code:$_SESSION['user'] = "john";
Printable View
i have my session.cookie_lifetime set to 0 does that mean that any variable i store as a session on the server like
would be set for ever or does it loose its value after a given period of time?Code:$_SESSION['user'] = "john";
Zero means that the cookie expires upon closing the browser.