What is the best PHP login with mysql class? #login with mysql
Edit
by Abenege Godwin - 10 years ago (2015-05-10)
Authentication of users on MySQL
| I need a solution to login users securely using MySQL with PDO, emailing passwords, activation of accounts after signup. |
Ask clarification
2 Recommendations
PHP Secure Login Library: Login users and start sessions in a MySQL database
This package can login users and start sessions in a MySQL database.
It can can start logged user sessions with records stored in a MySQL database accessed using MySQLi.
The package scripts can perform other operations to manage user accounts like registering users, verify the user email address, recover lost user passwords, login and logout users.
| by Mohamed Elbahja package author 310 - 8 years ago (2016-07-12) Comment
phpsls: PHP Secure Login System |
This package can Manage user registrations and authentication.
The registration class can create user records on a database using a PDO object created separately.
It can validate the user record values before creating the user account. It also sends an email message to let the user activate the account to be activated when the user returns to the site using a token sent in the email.
The login class can authenticate the user with his user name and password, setting session variables if the authentication is done correctly.
The class can also terminate the logged user session.
| by Dave Smith 7625 - 10 years ago (2015-05-11) Comment
Looks like this one meets all your requirements. |