in reply to Re: Session / User Management
in thread Session / User Management

Hey,

Thanks for the replies everyone.

I'm on a windows and running IIS-- :(

The thing with cookies is that how will it know to update / expire if the member only browses through html files? I would need some sort of coding to constantly update, which is why I was thinking about converting the .HTML files to a PERL file.

Thank you, tanger

Replies are listed 'Best First'.
Re^3: Session / User Management
by Joost (Canon) on Jun 10, 2005 at 11:11 UTC
    The whole point of using sessions is that you DONT need to update anything on the client side (apart from setting up the initial cookie to store the session id). That means your sessions will keep working as long as the cookie & session is still valid. I might be misinterpreting you, though, because I am not sure what you would want to "constantly update" anyway.