|
Question : How do I user authentication in php?Answer :We suggest you take a look on php's session functions for the purpose, http://www.php.net/session and for an example take a look at this article from zend http://www.zend.com/zend/spotlight/sessionauth7may.php
You can also use HTTP auth with php, for more info about that look at:
http://www.php.net/manual/en/features.http-auth.php
HTTP auth can also be intergrated with mysql, an example of doing that can be found here:
http://www.php4hosting.com/devshed/
|