Hi,
I am looking for a piece of session managment script (login script) I wrote one myself, but it seems to timeout very fast when ran remotly. I would like to avoid writing an other version if possible, so any help would be great.
:p
Sessions will destroy when you close your browser window. If you want to keep session alive for e.g. 1 hour you have to set a cookie.
setcookie('Cookie','Value',time()+3600);
Good luck! 🙂