code about session regeneration
Posted: Thu May 24, 2012 12:07 am
is there possibility to store the array of session variables into database and retrieve after few days with that name with out changing any data ?
thanks.
thanks.
A community of PHP developers offering assistance, advice, discussion, and friendship.
http://forums.devnetwork.net/
definitely you can store the data, the problem will be whether the data is still use-able because sessions expire when the browser window is closed. Unless you store the data in a cookie and then match that to whatever values you have stored in the database. Which 'name' are you referring to here; the session id? a session variable name?prakash.7 wrote:is there possibility to store the array of session variables into database and retrieve after few days with that name with out changing any data ?