PHP Classes

MySQL Login: Authenticate users with records in a MySQL table

Recommend this page to a friend!
     
  Info   View files Files   Install with Composer Install with Composer   Download Download   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
StarStar 37%Total: 3,795 All time: 856 This week: 488Up
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: 8437 in Denmark Denmark
Week rank: 195 Up1 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 <[email protected]> Contact me through MSN if you have any bugs or comments :)

  Files folder image Files (6)  
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

The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page.
Install with Composer Install with Composer
 Version Control Unique User Downloads Download Rankings  
 0%
Total:3,795
This week:0
All time:856
This week:488Up
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:4016
 
Excellent
15 years ago (kishore kumar)
80%StarStarStarStarStar