Reputation: 83
Right now I have a application in PHP, which works the HTTP authentication using curl. I believe, this the better authentication method to compare other authentication methods in-terms of security and code complexity.
But still I am wishing to know is there any other method available, better than curl.
Upvotes: 0
Views: 194
Reputation: 1852
I personally prefer HTTP Basic Auth for my php applications. Check the below links for more detail
http://php.net/manual/en/features.http-auth.php http://www.hackingwithphp.com/15/4/3/authentication-over-http http://docstore.mik.ua/orelly/webprog/pcook/ch08_10.htm http://evertpot.com/223/
Upvotes: 1