Obviously I have my own opinion and way of doing this, but I would be curious to see if there were any better ways.
How do you manage logins, i.e. check if user is logged in with valid login before serving members only content.
|
Obviously I have my own opinion and way of doing this, but I would be curious to see if there were any better ways. How do you manage logins, i.e. check if user is logged in with valid login before serving members only content.
| ||||
|
feedback
|
Note: This is a brief description of managing logins, there are a lot of things isn't described here. You should avoid different security holes like sql injection, session-hijacking, etc) | |||||
feedback
|
|
Once upon a time, I made a Session class, which was instantiated in a common include file. Rather than using Why? Because the site was on shared hosting, but the sessions needed to be secure as the database held details of people under 18. PHP by default uses It was a good way for me to learn about session handling, HTTP headers etc. and it felt much nicer to work with than the standard PHP way. | |||
|
feedback
|
|
I would not manage it myself anymore. There are just too much things that can go WRONG. Instead I would use OpenID just like stackoverflow.com does. | |||||
feedback
|
|
I don't know if it's the best way to do it but i'm used to create a user class and create the object when i create a new session. I store this object into the session and i'm used to link the session var to an enviroment var, just to avoid to deal with the $_SESSION array. In this way you can keep the login method and the login status inside the object itself, together with all the information related to the user (name, surname, access level, etc) something like that:
| |||
|
feedback
|
|
Not a new article, but this system is amazingly good. There may have been some more recent updates to the original article. | |||
|
feedback
|