Recommend this page to a friend! |
Download .zip |
Info | View files (6) | Download .zip | Reputation | Support forum (1) | Blog | Links |
Last Updated | Ratings | Unique User Downloads | Download Rankings | |||||
2005-10-27 (11 years ago) | 37% | Total: 3,783 | All time: 824 This week: 956 |
Version | License | Categories | ||||
mysql_login 1.0 | GNU General Publi... | Databases, User Management |
Description | Author | |
This class can be used to authenticate users with records stored in a MySQL database table. |
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 |
File | Role | Description |
---|---|---|
denied.php | Example | Example |
example.php | Example | example file |
login.php | Class | class file |
login.sql | Data | Configuration |
readme.txt | Doc. | Readme |
success.php | Example | Example |
Version Control | Unique User Downloads | Download Rankings | |||||||||||||||
0% |
|
|
User Ratings | User Comments (1) | ||||||||||||||||||||||||||||||||||
|
|
Applications that use this package |
If you know an application of this package, send a message to the author to add a link here.