Jump to content

something other than sessions


searls03

Recommended Posts

is there any other way to store login data besides for sessions.......needs to be usable with chat.........I have a chat app set up but when the session ends.....it doesn't know who sent the message...............no I don't have acces to the file to change timeout time.  any help with this?

Link to comment
https://forums.phpfreaks.com/topic/242229-something-other-than-sessions/
Share on other sites

Cookies are still going to expire or get deleted. You can unset cookies yes.

 

Create cookie:

setcookie("TestCookie", $value, time()+3600);

 

Destroy Cookie:

setcookie ("TestCookie", "", time() - 3600);

 

This is all copied and pasted directly from the php manual. (The link I posted earlier.)

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.