Jump to content

[SOLVED] Adjust time for session to last?


djfox

Recommended Posts

This is what I currently have (I -think- this is where the session time is set for my site, someone else had made the session thing and I find no other place of numbers in regards to sessions):

 

	function RemoveSession() {
	$_SESSION = array();
	if (isset($_COOKIE[session_name()])) {
	   @setcookie(session_name(), '', time()-4200000000, '/');
	}
}

 

If I want the session to last an entire day (24 hours), how would I adjust that?

Link to comment
https://forums.phpfreaks.com/topic/85282-solved-adjust-time-for-session-to-last/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.