Hi folks I'm using sessions to record data including a user name and password and I want to store just some of that for use after the session expires. Is set_cookie() the way to go or can I extend the life of my session past the browser closig?
Cheers
Nick
You can set the session to last as long as you want, but do you really want to store the data in the sessions? Wouldn't you rather put the important info in a database or at least some text file that does not meet mister Garbage Cleaner every now and then?
Thanks Vincent, you're right of course.
Thanks again (for the umpteenth time!)