Developing a Login System with PHP and MySQL


Used with the author's ...
article is written by daBoss. daBoss is the ...
of Designer Banners. daBoss can be ...
at sales (at) ... (dot) ...
a Login Sy Used with the author's permission.This article is written by daBoss. daBoss is the Webmaster of Designer Banners.
daBoss can be contacted at sales (at) designerbanners (dot) com.Developing a Login System with PHP and MySQLMost 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 password2. The component that allows the system to verify and authenticate the user when he subsequently logs in3.
The component that sends the user’s password to his registered email address if the user forgets his passwordSuch a system can be easily created using PHP and MySQL.================================================================Component 1 – RegistrationComponent 1 is typically implemented using a simple HTML form that contains 3 fields and 2 buttons:1. A preferred login id field2.
A preferred password field3. A valid email address field4.
A Submit button5. A Reset buttonAssume 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 AuthenticationA 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 field2. A password field3.
A Submit button4. A Reset buttonAssume 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 PasswordA 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 field2. A Submit button3.
A Reset buttonAssume 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:[email protected]"; $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.================================================================ConclusionThe 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.
Source: Free Articles from ArticlesFactory.com .

Top blog stories

A review of Idmobile.com

Idmobile.com offers both pay-as-you-go and contract plans. Pay-as-you-go plans are ideal for customers who don't want to be tied down to a long-term contract, and they can purchase bundles of data, minutes, and texts as and when they need them.

see post

A review of Idmobile.com

Idmobile.com offers both pay-as-you-go and contract plans. Pay-as-you-go plans are ideal for customers who don't want to be tied down to a long-term contract, and they can purchase bundles of data, minutes, and texts as and when they need them.

see post

AO.co: Online Shopping Made Simple

AO.co is a trusted expert in TVs, washing machines, clothes dryers and other household appliances. AO.com is one of the largest retailers in the UK and it specializes in electronics, clothes and home furniture.

see post

For our people.

At Three, we believe phones are good. They just make life better. Easier. And more fun. But we all need to find a balance that works for us. Our mission is to help our customers use their phones to live their best lives.

see post

We make your life easier

We make your life easier Since 1992, we’ve been helping customers get the best deal on their dream phone. We firmly believe in giving you the highest quality, for the lowest price. That’s why we work with three of the UK’s leading networks to do all the haggling for you,...

see post

FOUR BRANDS BECOME ONE. CURRYS.

Currys PLC is a leading omnichannel retailer of technology products and services, operating through 800+ stores and 16 websites in seven countries.

see post

Halfords - Quicker, Easier, and Convenient.

At Halfords, we're all about the journey. With more than 700 stores with over 10,000 colleagues, we're the UK's leading retailer of automotive and cycling products. We are also the leading operator in MOT, tyres, car servicing and car repairs - pleasing more than 750,000 customers every year.

see post

FOUR BRANDS BECOME ONE. CURRYS.

Currys PLC is a leading omnichannel retailer of technology products and services, operating through 800+ stores and 16 websites in seven countries.

see post

Sky - Epic. Endless. Entertainment.

It's important to us that everyone gets great customer service and can enjoy our products, no matter their level of sight. So, if you're blind, partially sighted or struggle to see or read the screen, we’ve a range of features to help you get the most from our products and...

see post

Nasty Gal - We exist for the “girl in progress”.

Look iconic, without the hassle— using Nasty Gal discount codes, you can shop your favorite pieces for way less by simply entering one of our promotional codes (of your choice) at the checkout. From delivery offers, to promo deals, we keep ‘em coming, so you always have the offer you...

see post

Digital Publishing From Past to Now

The Covid-19 has caused the school and universities to shut down around the world creating a major issue in Learning and Education. As this virus spreads through the interaction and if social distanci... The Covid-19 has caused the school and universities to shut down around the world creating a major...

see post

Why it’s Important to Manage Your Holiday Calendars?

A printable calendar 2021 is a prominent online platform where you download printable calendars of your choice. These calendars can be customized as per our client requirement with photo, text, logo, or any other image. If you are thinking of planning a dream vacation tour with family and kids but...

see post

How To Pick A Women's Robe


A ladies sleepwear basic, the women's robe is an essential lingerie style. The majority of women have at least a couple of robes in their wardrobe. But there is so much more to this favorite lingerie style than velour or cotton robes. The women’s robe has become a must have...

How Do I?


0 false 18 pt 18 pt 0 0 false false false /* Style Definitions */ ... HOW DO I? By Jr Davis [email protected]`   How Do I?  Almost everyday of my life, not soon after waking up this is the first question I ask myself. How do I get everything done...

When to Divorce a Narcissistic Man -- The Fastest Divorce is Never the Easiest Divorce


"How will I know when to divorce and finally find freedom for myself and the kids?" you ask yourself again and again.  "How can I get this nightmare behind me and just get the fastest divorce possible... Source: Free Articles from ArticlesFactory.com

The Handy And Cost Effective Solutions For Not Smiling


Have you stopped smiling due to the poor discolouration of your teeth, uneven length or wide gaps in your mouth? If this is you, shout with joy as you no longer need to suffer with these problems now that Dental Veneers are available. Discover the advances and cost savings now...

Do Not Lose Your Domain Name to a Shady Web Design Firm


This article is addressing one simple but very important question to ask; who will own my domain name? Registering a domain name is one of the very first steps in the web design process and it is one of the most common services that is taken for granted. Part of...

Teeth Whitening - Is it Enough?


Teeth Whitening is the big buzz at the moment but is it good for you? After treatment some people suffer from Sensitive Teeth and Gum irritations. Did you also know that if you have Crowns or Veneers they will not change colour like your natural teeth? There is a better...

Search topic

Teeth Whitening - Is it Enough?

Teeth Whitening is the big buzz at the moment but is it good for you? After treatment some people suffer from Sensitive Teeth and Gum irritations. Did you also know that if you have Crowns or Veneers they will not change colour like your natural teeth? There is a better...

Learn more