Preserved Topic: SECURE sessions w/ PHP |
|
---|---|
Author | Thread |
Nervous Wreck (II) Inmate From: Manassas VA, USA |
posted 06-13-2002 17:26
Tips? Pointers? |
Paranoid (IV) Mad Scientist From: Omicron Persei 8 |
posted 06-13-2002 17:37 |
Maniac (V) Mad Scientist From: 100101010011 <-- right about here |
posted 06-13-2002 18:09
Secure sessions isn't so much a "thing" as techniques to prevent people from cracking your session data. |
Nervous Wreck (II) Inmate From: Manassas VA, USA |
posted 06-13-2002 18:39
Hrmm... |
Maniac (V) Mad Scientist From: 100101010011 <-- right about here |
posted 06-13-2002 19:26
Here's a real simple example From the zend site. This is just an example of a way of encrypting cookie data. It doesn't actually check the username and password data against anything. Usually what you would do is have either a user table or a flat file with the user/pass info where you would check the incoming info. |
Paranoid (IV) Inmate From: A graveyard of dreams |
posted 06-14-2002 15:44
Not sure if this is what you are looking for, but it is about user authentication using sessions in php. |