Recommendation for a PHP class to login #login
Edit
by shammi - 5 years ago (2020-06-18)
User creation and login
| I would like a a decent login package. |
Ask clarification
2 Recommendations
PHP Login System: Create a system to manage users that access a site
This package can be used to create a system to manage users that access a site.
It provides classes that can perform several actions to create a MySQL database table using MySQLi to store records that will contain user details like user name, email, password, role, login date, etc.. The package can also:
- Register a new user
- Authenticate a given user
- Output HTML for pages to register, login and recover passwords of users
| by Win Aung Cho package author 30 - 4 years ago (2020-10-30) Comment
PHP Login System is a user control system for easy maintaining. Create user table in mysql database automatically. User may register, login and change password. Class is written samplest php script in one page. User control system can be installed on every pages easily. It take a small place such as <div> on the page anywhere. |
Secure PHP Login System: Register and login users using a database via PDO
This class can register and login users using a database via PDO.
It can process the registration of a user given the user name, password, name and email address.
It can also authenticate a user given the user name and password and optionally set a cookie to remember the user name on the next login.
The class starts a session for successfully authenticated users.
It can also log out by ending the user session, send a password reminder message and change the user password.
It also implements a two step login process similar to that of Google's, Facebook's SMS security process.
The user can see they devices they used to log in as well as log out from a device used before.
The class also provides an administration interface to manage users, edit details, see statistics, etc..
| by Manuel Lemos 26695 - 5 years ago (2020-06-20) Comment
You may want to try this package for registering and logging in users. |