How do i remember sessions, even after browser is closed.
is there any alternative than extending expire time of cookies.
i am using code igniter
How do i remember sessions, even after browser is closed.
is there any alternative than extending expire time of cookies.
i am using code igniter
The cookies is that only solution i suspect. As you said, you need to extend the time. However if you wanted to use PHP sessions instead, you to make sessions life longer using php.ini file but i don't think using sessions for this purpose will be a good idea because data of sessions is stored on server rather than individual user.
Thanks
I implement my version based on this article. The article explain a concept, security, and how to implement persistent login cookie.
The summary of what I done is:
I hope this help.