ArticlesReader.com Menu
Newest Articles
Most Viewed Articles
ArticlesReader.com RSS
Submit Article
Login
Signup
Search the articles

Articles Main Categories
Advice
Animals
Automobiles
Business
Career
Communications
Computer Programming
Computers
Entertainment
Environment
Family
Fashion
Finance
Food
Health & Medical
Home & Garden
Humor
Internet Business
Internet Marketing
Legal
Leisure & Recreation
Marketing
Other
Politics
Reference & Education
Religion
Self Improvement
Sports
Technology & Science
Travel
Writing
Subscribe
Receive alert message from us when new articles submitted to our site for free.

Enter your name

Enter your email

Syndicate

















Related Products
Home::Web Development

Developing A Login System With PHP And MySQL

Author : John L

Most interactive websites nowadays would require a user to log in into the website’s system in order to provide a customized experience for the user. Once the user has logged in, the website will be able to provide a presentation that is tailored to the user’s preferences.

A basic login system typically contains 3 components:

1. The component that allows a user to register his preferred login id and password

2. The component that allows the system to verify and authenticate the user when he subsequently logs in

3. The component that sends the user’s password to his registered email address if the user forgets his password

Such a system can be easily created using PHP and MySQL.

================================================================

Component 1 – Registration

Component 1 is typically implemented using a simple HTML form that contains 3 fields and 2 buttons:

1. A preferred login id field

2. A preferred password field

3. A valid email address field

4. A Submit button

5. A Reset button

Assume that such a form is coded into a file named register.html. The following HTML code excerpt is a typical example. When the user has filled in all the fields, the register.php page is called when the user clicks on the Submit button.

[form name="register" method="post" action="register.php"]

[input name="login id" type="text" value="loginid" size="20"/][br]

[input name="password" type="text" value="password" size="20"/][br]

[input name="email" type="text" value="email" size="50"/][br]

[input type="submit" name="submit" value="submit"/]

[input type="reset" name="reset" value="reset"/]
[/form]

The following code excerpt can be used as part of register.php to process the registration. It connects to the MySQL database and inserts a line of data into the table used to store the registration information.

@mysql_connect("localhost", "mysql_login", "mysql_pwd") or die("Cannot connect to DB!");
@mysql_select_db("tbl_login") or die("Cannot select DB!");
$sql="INSERT INTO login_tbl (loginid, password and email) VALUES (".$loginid.”,”.$password.”,”.$email.”)”;
$r = mysql_query($sql);
if(!$r) {

$err=mysql_error();

print $err;

exit();
}

The code excerpt assumes that the MySQL table that is used to store the registration data is named tbl_login and contains 3 fields – the loginid, password and email fields. The values of the $loginid, $password and $email variables are passed in from the form in register.html using the post method.

================================================================

Component 2 – Verification and Authentication

A registered user will want to log into the system to access the functionality provided by the website. The user will have to provide his login id and password for the system to verify and authenticate.

This is typically done through a simple HTML form. This HTML form typically contains 2 fields and 2 buttons:

1. A login id field

2. A password field

3. A Submit button

4. A Reset button

Assume that such a form is coded into a file named authenticate.html. The following HTML code excerpt is a typical example. When the user has filled in all the fields, the authenticate.php page is called when the user clicks on the Submit button.

[form name="authenticate" method="post" action="authenticate.php"]

[input name="login id" type="text" value="loginid" size="20"/][br]

[input name="password" type="text" value="password" size="20"/][br]

[input type="submit" name="submit" value="submit"/]

[input type="reset" name="reset" value="reset"/]
[/form]

The following code excerpt can be used as part of authenticate.php to process the login request. It connects to the MySQL database and queries the table used to store the registration information.

@mysql_connect("localhost", "mysql_login", "mysql_pwd") or die("Cannot connect to DB!");
@mysql_select_db("tbl_login") or die("Cannot select DB!");
$sql="SELECT loginid FROM login_tbl WHERE loginid=’".$loginid.”’ and password=’”.$password.”’”;
$r = mysql_query($sql);
if(!$r) {

$err=mysql_error();

print $err;

exit();
}
if(mysql_affected_rows()==0){

print "no such login in the system. please try again.";

exit();
}
else{

print "successfully logged into system.";

//proceed to perform website’s functionality – e.g. present information to the user
}

As in component 1, the code excerpt assumes that the MySQL table that is used to store the registration data is named tbl_login and contains 3 fields – the loginid, password and email fields. The values of the $loginid and $password variables are passed in from the form in authenticate.html using the post method.

================================================================

Component 3 – Forgot Password

A registered user may forget his password to log into the website’s system. In this case, the user will need to supply his loginid for the system to retrieve his password and send the password to the user’s registered email address.

This is typically done through a simple HTML form. This HTML form typically contains 1 field and 2 buttons:

1. A login id field

2. A Submit button

3. A Reset button

Assume that such a form is coded into a file named forgot.html. The following HTML code excerpt is a typical example. When the user has filled in all the fields, the forgot.php page is called when the user clicks on the Submit button.

[form name="forgot" method="post" action="forgot.php"]

[input name="login id" type="text" value="loginid" size="20"/][br]

[input type="submit" name="submit" value="submit"/]

[input type="reset" name="reset" value="reset"/]
[/form]

The following code excerpt can be used as part of forgot.php to process the login request. It connects to the MySQL database and queries the table used to store the registration information.

@mysql_connect("localhost", "mysql_login", "mysql_pwd") or die("Cannot connect to DB!");
@mysql_select_db("tbl_login") or die("Cannot select DB!");
$sql="SELECT password, email FROM login_tbl WHERE loginid=’".$loginid.”’”;
$r = mysql_query($sql);
if(!$r) {

$err=mysql_error();

print $err;

exit();
}
if(mysql_affected_rows()==0){

print "no such login in the system. please try again.";

exit();
}
else {

$row=mysql_fetch_array($r);

$password=$row["password"];

$email=$row["email"];

$subject="your password";

$header="from:you@yourdomain.com";

$content="your password is ".$password;

mail($email, $subject, $row, $header);

print "An email containing the password has been sent to you";

}

As in component 1, the code excerpt assumes that the MySQL table that is used to store the registration data is named tbl_login and contains 3 fields – the loginid, password and email fields. The value of the $loginid variable is passed from the form in forgot.html using the post method.

================================================================

Conclusion

The above example is to illustrate how a very basic login system can be implemented. The example can be enhanced to include password encryption and additional functionality – e.g. to allow users to edit their login information.

Used with the author's permission.

This article is written by John L.
John L is the Webmaster of Designer Banners (http://www.designerbanners.com).

Spam emails More free articles

Related articles


  1. Search Engines and Customers Want Focused Web Site Content
  2. A Web Site That Sells Is All One Needs To Have A Successful Online Business!
  3. Easy Steps To Website Development and Promotion
  4. But My Business Doesn't Need A Website!
  5. 50 Ways To Use Your Website
  6. Where on Earth is Your Websitee?
  7. Having a Domain Name And Web Site Gives Your Business The Key To The Door
  8. Five Reasons You Have to Stop Your Web Site
  9. Ten Major Tips to Develop a Multilingual Web Site to Work
  10. Website Globalization
  11. Do You And Your Website Have Credibility?
  12. My Yahoo Search - Beyond Bookmarks
  13. How to Create a Professional Web Site in 24 Hours
  14. Do You Really Need A Website To Succeed
  15. Launch Your Own Website Today - It's Easier Than You Think!
  16. Growing Your Meetings In CyberSpace
  17. 7 Profit Producing Reasons Why Every Successful Service Professional Needs A Web Presence
  18. Content Management
  19. How To Make Your Website More Successful? (Part I)
  20. Selecting a Web Content Management Product
  21. Web Design for the Professional Magician Part I - Selecting the Perfect Domain Name
  22. Building a Great Intranet Taxonomy
  23. Web Accessibility: The Basics
  24. Benefits Of An Accessible Website: Part 2 - The Business Case
  25. Benefits Of An Accessible Website: Part 1 - Increase In Reach
More related feeds
Developing a Login System with PHP and MySQL
Developing a Login System with PHP and MySQL Most interactive websites nowadays would require a user to log in into the website’s system in order to provide a customized experience for the user. Once the user has logged in, ...

Website Developing
I want to make a "download videos from Youtube" website. This website will contain following 5 pages. 1. Home 2. FLV converter Download 3. Disclaimer 4. Contact Us. 5. Privacy policy It is upto you how you make it. ...

Article Submission - Tattoos
Job considered as completed for every article successfully published on 5 article directories. I'm looking at developing a long term working relationship with the successful writer if the work is satisfactory. If this is a job for you, ...

Developing a Login System with PHP and MySQL - Component 2 ...
Developing a Login System with PHP and MySQL - Component 2 – Verification and Authentication.

PHP/MySQL Developer
We are looking for a web developer with a combination of Linux/ PHP /MySQL, software expertise. The ideal candidate will be enthusiastic, innovative, and good at “getting things done”. What you’ll be doing: * Developing feature ...

PHP & MySQL Developer / Web3 BV / Sittard, Limburg, Netherlands ...
Web3 Development put itself on the map by developing hundreds of websites using a self-developed Content Management System (CMS). The last few years Web3 has switched it's focus to developing critical web-applications. ...

MySQL (4th Edition) (Developer's Library)
He describes everything from the basics of getting information into a database and formulating queries, tousing MySQL with PHP or Perl to generate dynamic web pages, to writing your own programs that access MySQL databases, ...

PHP MySQL HELP, passing info trough a form and then inserting it ...
im creating a website for a community and it should be editable by any webmaster or by anyone with no web developing training at all. so i created several sections and each can be editable by admins (register/login system knows who is ...

Using SpringLoops for developing eWrite
I used to have HP servers in the attic running Ubuntu Server with Apache, PHP and mySQL to host, develop and backup everything I was developing. I sold off all the servers, replaced a dodgy router and ran CAT5e 100MBPs cable through the ...

PHP and IIS – A Deeper Dive
That puts the log in a place that IIS can use, and also keeps it close to where I’m running or developing my PHP applications. cgi.force_redirect = 0 – This directive is required for running under IIS. It is a directory security ...

 


 

© 2007 articlesreader.com - All Rights Reserved