PHP Classes

MySQL Login: Authenticate users with records in a MySQL table

Recommend this page to a friend!
  Info   View files View files (6)   DownloadInstall with Composer Download .zip   Reputation   Support forum (1)   Blog    
Ratings Unique User Downloads Download Rankings
StarStar 37%Total: 3,795 This week: 1All time: 854 This week: 560Up
Version License Categories
mysql_login 1.0GNU General Publi...Databases, User Management
Description 

Author

This class can be used to authenticate users with records stored in a MySQL database table.

It features:

- Customization of the table and the fields to lookup to verify the existence of an account and the respective password
- A session variable is always set whether or not the user authenticated correctly
- Customize the URL of pages to redirect when the user is granted or denied

Picture of Peter
Name: Peter <contact>
Classes: 1 package by
Country: Denmark Denmark
Age: ???
All time rank: 8427 in Denmark Denmark
Week rank: 416 Up4 in Denmark Denmark Up

Details

readme.txt 1. description 2. example 3. license 4. author 1. description ================================= MySQL Login is a class that handles logins attempted to mysql servers. It takes a great deal of parameters and can be modified to suit all the needs one may have with a login script.. if not? please dont hesitate to contact me folks..! ;) 2. example ================================= 1. Run LOGIN.SQL or this code on your mysql server to create a table with the default values: CREATE TABLE `login` ( `id` int(11) NOT NULL auto_increment, `username` text NOT NULL, `password` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ; 2. Check example.php. 3. You must change the variables there to fit your needs: $mysql_database // mysql database $mysql_hostname // mysql hostname $mysql_username // mysql username $mysql_password // mysql password $table_name // your login table name (login) $table_username // field in $table_name with usernames $table_password // field in $table_name with passwords $query_username // query username $query_password // query password $redirect_accepted // redirects to this if login is succesful $redirect_denied // redirects to this if login has been denied **** NOTE **** The script automatically sets a session variable called "loggedin" with a value of 1 if login was succesful or 0 if login was denied. **** NOTE **** 3. license ================================= GNU General Public License (c) 4. author ================================= Steffen Beck <steffenbeck@hotmail.com> Contact me through MSN if you have any bugs or comments :)

  Files folder image Files  
File Role Description
Accessible without login Plain text file denied.php Example Example
Accessible without login Plain text file example.php Example example file
Plain text file login.php Class class file
Accessible without login Plain text file login.sql Data Configuration
Accessible without login Plain text file readme.txt Doc. Readme
Accessible without login Plain text file success.php Example Example

 Version Control Unique User Downloads Download Rankings  
 0%
Total:3,795
This week:1
All time:854
This week:560Up
User Ratings User Comments (1)
 All time
Utility:39%StarStar
Consistency:50%StarStarStar
Documentation:64%StarStarStarStar
Examples:67%StarStarStarStar
Tests:-
Videos:-
Overall:37%StarStar
Rank:3937
 
Excellent
14 years ago (kishore kumar)
80%StarStarStarStarStar