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

UAE DRIVING


  UAE Driving rent a car company Dubai not only provides you with great vehicles and exceptional service, but we also offer great savings and benefits all around the UAE! We supply our customers with...   UAE Driving rent a car company Dubai not only provides you with great vehicles and exceptional...

How You Can Find Top 10 Loose Gemstones with Their Facts


Investing in loose gemstones is not for everyone. But for those who love collecting fine gemstones and jewellery, rare gemstones have a good history of increasing in value over time. Whenever the stock market is declining, and the currency is losing value, loose gemstones tend to provide a reliable option...

How to choose nail polish color | 6 Tips


The nail color is a key element in our looks daily and can make hands and feet look clean and in tune with our dress, personality, skin tone ... or the opposite. Today there are so many possibilities,... The nail color is a key element in our looks daily and...

7 Reason why need to buy Natural Ledgestone


Ledgestone panels and corners are rugged in texture and also popular with the name ledger stone or stacked stone. Ledgestone installation provides a complete solution for walls and is available with either cement or non-cement/ glue backing. Do you have a lavishing entrance? But, the lack of quality material for...

Top Features of Gym Bags with Shoe Compartment for All Types of Workout


So, when purchasing a gym bag with shoe compartment look for these features that are applicable for every type of workout as well as carry for traveling. Personal trainers often recommend finding a workout partner for some fitness motivation. And who says that partner can’t be a bag? It’s an...

What is the way to extend the service life of 16Mn seamless steel pipe?


16Mn seamless steel pipe is now a relatively important type of steel. It is precisely because of its great effect and used in key areas, so the demand for it is still relatively large. At the time of purchase, there is still a concern about the service life of 16Mn...

What are tread wears and how it functions?


Tire bear is known as tread wear indicator bars and they are useful in assessing the condition of tires in regards to their wear and tear. This is one factor that you need to consider before you start... Tire bear is known as tread wear indicator bars and they are...

Italian Subtitling Services | Vanan Captioning


Vanan Captioning can be vouched for providing exceptional captioning solutions and we have earned the credibility of our clients for offering broad language options, confidentiality, ISO standard, multiple file formats and quality through our services. We are mainly known to give on-time delivery and cost effective rates. You might have...

Modernization of the Nursing Field


 The study is based on the fact that technology has become a global concern in most of the operational institutes and the modernization of society. Nurses have encountered the everyday way o...  The study is based on the fact that technology has become a global concern in most of the...

Olympia 1863 verses Lucille Rhodes 1976 paintings analysis


These two artistic works have been established to show an ultimate subjective type of message to the land of existence. It is just the fact that through this it was just a form of nude acceptance in t... These two artistic works have been established to show an ultimate subjective...

Search topic

Olympia 1863 verses Lucille Rhodes 1976 paintings analysis

These two artistic works have been established to show an ultimate subjective type of message to the land of existence. It is just the fact that through this it was just a form of nude acceptance in t... These two artistic works have been established to show an ultimate subjective...

Learn more