Re: [PHP] Approaches to Logging In

2003-08-29 Thread Chris Sherwood
Honestly if you have the users logging in use a session variable to contain a session id then verify against that sessionid as they browse the sensitive sections and use a class to verify that they are a valid user so yes Ideally sessions are the way to go Chris - Original Message - Fro

RE: [PHP] Approaches to Logging In

2003-08-29 Thread Chris W. Parker
Seth Willits on Friday, August 29, 2003 3:24 PM said: > Are sessions the way to go? Well you could use cookies also but those can be tampered with. Sessions aren't hard to work with really. All you need to do is start the session, write a variable to $_SESSION if t