PHP User Management
Free and open source PHP User Management Scripts. These scripts provide a solution of creating a membership system of a website.-
The user is password is checked against an array containing all authorized users. If the user exists and the password is correct, it sets two cookies, one for the user and another for the password, to start an authenticated session.Simple Authentication Class may also invalidate the authentication by forcing the user and password cookies to expire.Requirements: PHP 4.1.0 or higher
-
UserAction takes an user name and password and executes a MySQL database query to verify whether the specified password matches the user password. MD5 is used to encode the password which is compared to the stored record.Requirements: PHP 5.0 or higher
-
gLogin generates Javascript code that computes MD5 hashes of a password field value with a random salt value when the form submitted.The encoded password is verified to match the correct password that was encoded using the same salt value.Requirements: PHP 3.0 or higher
-
An XML file with user and group information is created and several types of operations to manipulate userManager can be performed.Key Features of userManager:- Add an user group- Add an user to a group- Change the name of a group- Remove a group- Add an user- Change the password of an user- Remove an user- Verify whether a password is ...
-
Birthday Ordering accesses a MySQL database with a table with records of users sorting the results according to the user birthday date. A listing of user names and sorted birth dates can be displayed.Birthday Ordering is used for retrieve member information according to their birthday sequence from today (current date).Requirements: PHP 3.0 or higher
-
The user records table and field names can be configured. PHP User Class is very flexible as it uses variable settings for database tables and fields, as well as session and cookie names.Key Features of PHP User Class:- Create new user records- Activate user accounts- Authenticate users against credentials stored in session variables and cookies- Logout to end the session ...
-
A bidimensional array of tokens of limited length, with letters and digits, is generated. The generated grid is seeded by a given secret salt string and a specific id that may be used to generate unique grids for different applications and users.Secure Token Grid Authentication may also verify whether a token entered by the user corresponds to a token of ...
-
Login and DB classes quick start takes the user name and password of an authenticating user against user records in a MySQL database.Session variables can be setup and the last login date can be updated if the user successfully authenticates.Requirements:PHP 4.0 or higher
-
The Login Class looks up in a given MySQL table for the password of a given user, and checks if the password matches a given value entered by the user being authenticated.If there is a record for the specified user and the password is correct, The Login Class sets a session variable with the user name and returns the code ...
-
asession provides an alternative implementation to manage user access sessions without using PHP built-in session management functions.asession provides a similar API to PHP session functions but its parameters can be configured directly in the class objects, instead of the php.ini.There are two versions of asession to work with PHP 4 and PHP 5.
-
Object Session Saver can register a list of one or more classes objects that are intended to be saved. The classes must implement the SessionObject interface.All the registered classes can be called to save and restore the state of the session objects.Requirements:PHP 5.0 or higher
-
Mafia Session creates a key encoded with SHA1 based on the IP address and the current time when an user accesses the login page. The key is used to generate a salt value that is used to encrypt the password that the user enters in the login form.On the server side the class uses the same salt to verify whether ...
-
The user id, login and last access date and time can be stored in session variables of a registered session.Session Manager Implementation can also check whether an user session is active if its last access occurred in the last 5 minutes. In that case the last access date and time is updated to the current date and time.Requirements:PHP 5.0 or ...
-
The user name and password are checked against the records in a MySQL database.If an use is successfully authenticated, Login Script initializes session variables with the user identification details retrieved from the database.Requirements:PHP 4.0 or higher
-
Login Class can present an HTML form to submit the user name and password when the user is not yet authenticated. The user credentials are checked against records stored in a MySQL table.If the user is authenticated successfully, the class sets some session variables with the user details. The MySQL database table fields to check are configurable.Requirements:PHP 5.0 or higher

