How to implement a login system under php?

Are there any good tutorials on creating your own registration, authentication using php / mysql / or javascript.

+4
source share
4 answers

If this is not some exercise when you need to implement your own authentication sequence, I would suggest using OpenID to do weightlifting. It's simple, many sites use it, and you will get rid of many problems with security, encryption, etc.

You can read about the Zend framework for OpenID here , as well as a tutorial on how to use it here .

+5
source

http://www.tutorialized.com/tutorials/PHP/User-Authentication/1
There you will find many tutorials on this topic. Hope this helps;)

Edit: I agree with Aviad Ben Dov, OpenID is a much nicer solution than creating your own login system.

+1
source

I found this post from another question. Pretty thorough and simple approach.

http://net.tutsplus.com/tutorials/php/user-membership-with-php/

0
source

All Articles