PHP & MySQL Login System Guide
PHP & MySQL Login System Guide
uri=speedysense)
(https://www.facebook.com/speedysense) (https://twitter.com/speedysense)
(https://www.linkedin.com/company/speedysense) (https://www.instagram.com/speedysense)
(https://www.pinterest.com/speedysense)
(https://speedysense.com/)
https://speedysense.com/create-registration-login-system-php-mysql/ 1/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
(https://speedysense.com/create-registration-login-system-php-mysql/)
How to create a Registration and Login System with PHP and MySQL. Here is
the quick solution to build a login system with PHP and MySQL. Nowadays
almost every website provides Registration and login functionality. Thus, it is
necessary to add a login system in modern web applications.
https://speedysense.com/create-registration-login-system-php-mysql/ 2/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
Furthermore, we will show you how to build secure pages that are only
accessed by logged in users. Without login, the user can not access the page.
https://speedysense.com/create-registration-login-system-php-mysql/ 3/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
Once you create a database, the second step to creating a user table. The
user’s table will have the following fields.
id – int(11)
username – varchar(100)
email – varchar(100)
password – varchar(100)
create_datetime – datetime
https://speedysense.com/create-registration-login-system-php-mysql/ 4/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
Copy the above query and execute it in the SQL query area.
https://speedysense.com/create-registration-login-system-php-mysql/ 5/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
db.php
https://speedysense.com/create-registration-login-system-php-mysql/ 6/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
<?php
// Enter your host name, database username, password, and database
// If you have not set database password on localhost then set empty
$con = mysqli_connect("localhost","root","root","LoginSystem");
// Check connection
if (mysqli_connect_errno()){
echo "Failed to connect to MySQL: " . mysqli_connect_error();
}
?>
auth_session.php
<?php
session_start();
if(!isset($_SESSION["username"])) {
header("Location: login.php");
exit();
}
?>
registration.php
https://speedysense.com/create-registration-login-system-php-mysql/ 7/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Registration</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<?php
require('db.php');
// When form submitted, insert values into the database.
if (isset($_REQUEST['username'])) {
// removes backslashes
$username = stripslashes($_REQUEST['username']);
//escapes special characters in a string
$username = mysqli_real_escape_string($con, $username);
$email = stripslashes($_REQUEST['email']);
$email = mysqli_real_escape_string($con, $email);
$password = stripslashes($_REQUEST['password']);
$password = mysqli_real_escape_string($con, $password);
$create_datetime = date("Y-m-d H:i:s");
$query = "INSERT into `users` (username, password, email, cre
VALUES ('$username', '" . md5($password) . "', '$em
$result = mysqli_query($con, $query);
if ($result) {
echo "<div class='form'>
<h3>You are registered successfully.</h3><br/>
<p class='link'>Click here to <a href='login.php'>Log
</div>";
} else {
echo "<div class='form'>
<h3>Required fields are missing.</h3><br/>
<p class='link'>Click here to <a href='registration.p
</div>";
}
} else {
?>
<form class="form" action="" method="post">
<h1 class="login-title">Registration</h1>
<input type="text" class="login-input" name="username" placehold
<input type="text" class="login-input" name="email" placeholder
<input type="password" class="login-input" name="password" plac
<input type="submit" name="submit" value="Register" class="logi
<p class="link"><a href="login.php">Click to Login</a></p>
</form>
https://speedysense.com/create-registration-login-system-php-mysql/ 8/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
<?php
}
?>
</body>
</html>
login.php
https://speedysense.com/create-registration-login-system-php-mysql/ 9/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Login</title>
<link rel="stylesheet" href="style.css"/>
</head>
<body>
<?php
require('db.php');
session_start();
// When form submitted, check and create user session.
if (isset($_POST['username'])) {
$username = stripslashes($_REQUEST['username']); // removes
$username = mysqli_real_escape_string($con, $username);
$password = stripslashes($_REQUEST['password']);
$password = mysqli_real_escape_string($con, $password);
// Check user is exist in the database
$query = "SELECT * FROM `users` WHERE username='$username'
AND password='" . md5($password) . "'";
$result = mysqli_query($con, $query) or die(mysql_error());
$rows = mysqli_num_rows($result);
if ($rows == 1) {
$_SESSION['username'] = $username;
// Redirect to user dashboard page
header("Location: dashboard.php");
} else {
echo "<div class='form'>
<h3>Incorrect Username/password.</h3><br/>
<p class='link'>Click here to <a href='login.php'>Log
</div>";
}
} else {
?>
<form class="form" method="post" name="login">
<h1 class="login-title">Login</h1>
<input type="text" class="login-input" name="username" placehold
<input type="password" class="login-input" name="password" plac
<input type="submit" value="Login" name="submit" class="login-b
<p class="link"><a href="registration.php">New Registration</a>
</form>
<?php
}
?>
https://speedysense.com/create-registration-login-system-php-mysql/ 10/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
</body>
</html>
Similarly, the output of the above code will look like this.
dashboard.php
https://speedysense.com/create-registration-login-system-php-mysql/ 11/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
<?php
//include auth_session.php file on all user panel pages
include("auth_session.php");
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Dashboard - Client area</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="form">
<p>Hey, <?php echo $_SESSION['username']; ?>!</p>
<p>You are now user dashboard page.</p>
<p><a href="logout.php">Logout</a></p>
</div>
</body>
</html>
After the user login, you will see the following user dashboard screen.
Similarly, you can create another secure page. Only you need to add the below
code first in your PHP file.
<?php
require('db.php');
include("auth_session.php");
?>
https://speedysense.com/create-registration-login-system-php-mysql/ 12/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
logout.php
<?php
session_start();
// Destroy session
if(session_destroy()) {
// Redirecting To Home Page
header("Location: login.php");
}
?>
style.php
https://speedysense.com/create-registration-login-system-php-mysql/ 13/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
body {
background: #3e4144;
}
.form {
margin: 50px auto;
width: 300px;
padding: 30px 25px;
background: white;
}
h1.login-title {
color: #666;
margin: 0px auto 25px;
font-size: 25px;
font-weight: 300;
text-align: center;
}
.login-input {
font-size: 15px;
border: 1px solid #ccc;
padding: 10px;
margin-bottom: 25px;
height: 25px;
width: calc(100% - 23px);
}
.login-input:focus {
border-color:#6e8095;
outline: none;
}
.login-button {
color: #fff;
background: #55a1ff;
border: 0;
outline: 0;
width: 100%;
height: 50px;
font-size: 16px;
text-align: center;
cursor: pointer;
}
.link {
color: #666;
font-size: 15px;
text-align: center;
margin-bottom: 0px;
}
https://speedysense.com/create-registration-login-system-php-mysql/ 14/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
.link a {
color: #666;
}
h3 {
font-weight: normal;
text-align: center;
}
Finally, our login system is ready to use. You can download the source code
from the below download link.
Download Source
(https://github.com/speedysense/registeration-
login-
system/archive/master.zip)
Final Thoughts
That all you need to know how to create registration and login system in PHP
with MySQL database. Furthermore, we create a registration and login form.
Moreover, we create a MySQL connection file to establish a database
connection. Thus we create a complete login system with interactive design.
We hope you have found this article helpful. Let us know your questions or
feedback if any through the comment section in below. You can subscribe our
newsletter (https://feedburner.google.com/fb/a/mailverify?uri=speedysense)
and get notified when we publish new WordPress articles for free. Moreover,
you can explore here other JavaScript (/javascript/) related articles.
If you like our article, please consider buying a coffee for us.
Thanks for your support!
https://speedysense.com/create-registration-login-system-php-mysql/ 15/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
(HTTPS://SPEEDYSENSE.COM/TAG/PHP/) REGISTRATION
(HTTPS://SPEEDYSENSE.COM/TAG/REGISTRATION/) SYSTEM
(HTTPS://SPEEDYSENSE.COM/TAG/SYSTEM/)
Reply
SPEEDYSENSE EDITORIAL
January 6, 2020 at 10:23 AM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-711)
Make sure you entered your username, email and password in the
registration form.
https://speedysense.com/create-registration-login-system-php-mysql/ 16/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
Reply
LEE KING
January 7, 2020 at 8:42 AM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-714)
I did several times but the program still comes back with that message.
Reply
SHIKO
June 10, 2020 at 3:36 AM (https://speedysense.com/create-registration-login-system-
php-mysql/#comment-1876)
hi
check ur table in database , set unused rows in database ( Null )
Reply
ABDIRIZAK ABDIRASHID
August 26, 2021 at 8:12 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-9344)
Reply
CHAITHRA
May 26, 2023 at 2:32 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-64746)
https://speedysense.com/create-registration-login-system-php-mysql/ 17/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
Reply
MARTIN KANCHEV
April 6, 2020 at 9:59 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-1219)
Reply
SIVA RAMA
April 11, 2020 at 12:38 AM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-1257)
Reply
BRAM LAMBERTS
November 30, 2020 at 6:43 AM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-4910)
Reply
MERGIM
April 25, 2020 at 12:31 AM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-1452)
Hi,
https://speedysense.com/create-registration-login-system-php-mysql/ 18/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
Best regards,
Mergim Alija
Reply
English Solution:
The problem is in the session_start ()
It should be first on your login.php page. Try it and you will see that it works!
………………………….
Solución en Español:
El problema está en el session_start ()
Debe ser lo primero en tu página login.php. Pruébalo y verás que funciona!
Reply
IKHLAS OYELAMI
May 20, 2020 at 7:07 AM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-1689)
Thank you sir, I’m very fortunate to feel you make things work. it really work well
for me, I appreciate
https://speedysense.com/create-registration-login-system-php-mysql/ 19/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
Reply
SAM
May 28, 2020 at 11:09 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-1781)
Hi
Thanks for the tutorial on the login and user registration. Very much appreciated,
so simple and easy to follow for a newbie like myself who is just starting out really
in PHP.
Reply
CATH
July 25, 2020 at 7:12 AM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-2337)
Thank you for the tutorials it really useful for me to create a blog….
Reply
Thanks a lot for this post. I’ve searched all over the internet for perfect login
system finally found yours:)
Reply
LUIGI
https://speedysense.com/create-registration-login-system-php-mysql/ 20/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
thanks for your tutorial it was useful for me to understand how it works, but I have
a problem with your code, after registering and proceeding with the login on click
instead of proceeding to the dashboard.php page redirects me to login.php
Reply
SPEEDYSENSE EDITORIAL
September 5, 2020 at 9:35 AM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-3055)
Hi
Its Strange, We checked after login redirect to dashboard page. So what is
wrong you found in our code?
Reply
SETORQQ
October 14, 2020 at 1:28 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-3466)
Your style is very unique compared to other folks I’ve read stuff from.
Thanks for posting when you have the opportunity, Guess I will just bookmark this
blog.
Reply
MANISH
November 14, 2020 at 4:41 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-4404)
https://speedysense.com/create-registration-login-system-php-mysql/ 21/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
Reply
ELA
November 19, 2020 at 2:59 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-4601)
its working fine, also how to route non logged in users to login page if they directly
access dashboard page . Thank you guys….
Reply
CLINT SANTIAGO
November 30, 2020 at 1:33 AM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-4898)
Reply
AHMAD
December 11, 2020 at 11:31 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-5357)
https://speedysense.com/create-registration-login-system-php-mysql/ 22/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
Reply
SCOUT
January 2, 2021 at 8:46 AM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-6083)
Has your code working perfectly with php5 (thank you!), but now having issues
with this solution with shift to php7. Is there anything in the code that needs
changing to make it work with php7?
Reply
SUNNY
January 16, 2021 at 9:44 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-6527)
For new users, it would be nice to have a link to a complete list of prerequisites,
otherwise very nice tutorial
Reply
MILAN
January 19, 2021 at 7:36 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-6594)
Reply
SAMEE UR REHMAN
https://speedysense.com/create-registration-login-system-php-mysql/ 23/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
Reply
KAIN
March 16, 2021 at 2:14 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-7224)
Reply
TUCUTE
February 18, 2021 at 6:24 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-7050)
Reply
SHARUMI
April 9, 2021 at 9:04 AM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-7333)
Reply
https://speedysense.com/create-registration-login-system-php-mysql/ 24/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
KAMESH TIWARI
April 14, 2021 at 1:42 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-7351)
Reply
MAYURI
April 22, 2021 at 12:38 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-7382)
thank you
Reply
JENCY
May 13, 2021 at 3:06 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-7519)
Reply
UTSA ROY
July 27, 2021 at 2:25 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-8729)
Reply
https://speedysense.com/create-registration-login-system-php-mysql/ 25/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
ROY CASPER
August 11, 2021 at 6:28 AM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-9027)
I’m pretty new at this. How do I call the PHP in to execute the “login/register”
system in my website?
Thank you
Reply
CHRIS BOKUNGAI
August 12, 2021 at 5:22 AM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-9043)
Hello.
Thank you for the awesome work.
Reply
TIDINO
October 20, 2021 at 10:34 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-10337)
Reply
JAYANT VERMA
March 22, 2022 at 12:58 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-13521)
https://speedysense.com/create-registration-login-system-php-mysql/ 26/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
Reply
EVA
August 5, 2022 at 6:28 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-22478)
Reply
Nice tutorial, works well! One thing I noticed. It says style.php when it should say
style.css.
Reply
HUSSAINI UMAR
March 6, 2023 at 3:40 PM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-51843)
Perfect 💯% I appreciate it
Reply
LEO
April 3, 2023 at 2:49 AM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-56084)
Really useful article! I followed the steps and it really works! Thanks my friend!
https://speedysense.com/create-registration-login-system-php-mysql/ 27/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
Reply
JASHUVA
April 5, 2023 at 10:15 AM (https://speedysense.com/create-registration-login-system-php-
mysql/#comment-56434)
Perfect thankyou
Reply
Reply
Comment
Name*
Email*
Website
Save my name, email, and website in this browser for the next time I comment.
https://speedysense.com/create-registration-login-system-php-mysql/ 28/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
Submit
Search
Latest Posts
7
(https://speedysense.com/7-actionable-tips-to-boost-e-coomerce-store-conversions/) Actionable
(https://speedy
actionable-
tips-to-boost-
e-coomerce-
store-
conversions/)
July 29, 2023
(https://speedys
How to Choose
(https://speedysense.com/how-to-choose-right-wordpress-development-service/) the Right White
(https://speedysens
to-choose-right-
wordpress-
development-
service/) June 17,
2023
(https://speedysense
https://speedysense.com/create-registration-login-system-php-mysql/ 29/30
21/10/2024, 08:28 Create a Registration and Login System with PHP and MySQL
Categories
Select Category
Subscribe
Enter your email address to subscribe to this blog and receive notifications of new posts by email.
E n t e r Yo u r E - m a i l A d d r e s s . . .
Subscribe
(HTTPS://SPEEDYSENSE.COM/)
ON-SPEEDYSENSE / )
https://speedysense.com/create-registration-login-system-php-mysql/ 30/30