Code for sign up authentication via SMS #sms authentication
Edit
by Ramanujam M - 10 years ago (2014-11-13)
user login authentication using sms
| I need SMS verification in my website for user registration. |
Ask clarification
1 Recommendation
PHP SMS Authentication: Authenticate users once using codes sent via SMS
This class can authenticate users once using codes sent via SMS.
It can take a phone number of a user to authenticate and sends a HTTP request to a local server script that will send a SMS message to that number with a generated password using the TxtLocal API.
The generated password is stored in a MySQL database for subsequent verification.
The class can also verify the password entered by the user to authenticate him as owner of the given phone number by sending another HTTP request to the local server script to check the database to verify if the password is correct.
| by Manuel Lemos 26695 - 10 years ago (2014-11-15) Comment
This class does exactly what you want. It relies on a commercial SMS service API of TextLocal, but it provides a free trial account that you can use to test your applications. |