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

The German People Is A Genius Not A Superior One


The world hasn’t forgotten the Superiority of the German People theory adopted by Hitler and resulting in massive destruction represented in the killing of millions of people and the destruction... The world hasn’t forgotten the Superiority of the German People theory adopted by Hitler and resulting in massive destruction represented...

Will EU Remain Spectators in Arms Race?


Emmaneul Macron, the youngest president in French history and the youngest French head of state since Napoleon, has said: ‘In the absence of a legal framework, they (EU member states) could rapi... Emmaneul Macron, the youngest president in French history and the youngest French head of state since Napoleon, has...

The Characteristics of the Dictators


1-The dictator believes that all his opinions are always right. 2-The dictator believes that he is the embodiment of the country. Any kind of opposition against him is considered a crime against the ... 1-The dictator believes that all his opinions are always right. 2-The dictator believes that he is...

Why is Getting My Dog Groomed So Expensive?


We know the importance of getting our dogs groomed. But not all of us can actually afford the grooming of our dogs luxury pet centre.   We know the importance of getting our dogs groomed. But not all of us can actually afford the grooming of our dogs luxury pet centre....

Dog Sitting Services - How a Professional Dog Sitter Gives You Peace of Mind


You need to travel, or you are traveling frequently. What are you doing with your pets or your beloved dog? You can’t take your dog with you when you are traveling.    You need to travel, or you are traveling frequently. What are you doing with your pets or your beloved...

How Can I Train a Dog at Home


This article teaches you how to train a dog at home. You can toilet train her at home. You can also train her in removing unwanted behaviours and many exciting tricks. You can train a dog anywhere. So, how can I train a dog at home ? In fact, most...

Reasons why grooming your dog is good for you and the dog


Having a dog is great but comes with a lot of responsibilities, just like having any other pet. The main responsibility is grooming the dog regularly, something that some people still question the importance of it. If you have been wondering whether you should be grooming your dog, then below...

Sterilization of Dogs - An Overview


Neutering (also known as castration) and spaying are the common term used to describe the surgical procedure during which both testicles (in males) and uterus and its parts (in females) are removed in order to sterilize (make infertile) a male and female dog respectively. At Pet Prime Veterinary Clinic (Dog...

Reasons Why Dogs Become Aggressive


You may have noticed cases of your dog suddenly showing signs of aggression or rather becoming aggressive and threatening to bite. Such nasty behaviours and signs of aggression by your dog may be frustrating Well, if you have no idea why your dog gets aggressive all over a sudden and...

Things You Need to Consider Before Adopting a Dog


The loyal nature of dogs makes them the perfect pets, whether you have a family or not. However, most of the time, people rush into adopting pets only to end up being overwhelmed with the responsibilities, which are physical, emotional, and psychological. If you have been considering adopting a pooch,...

Search topic

Things You Need to Consider Before Adopting a Dog

The loyal nature of dogs makes them the perfect pets, whether you have a family or not. However, most of the time, people rush into adopting pets only to end up being overwhelmed with the responsibilities, which are physical, emotional, and psychological. If you have been considering adopting a pooch,...

Learn more