Creating a Login App With md5 Encryption Using PHP
In this tutorial we will create a Login App With md5 Encryption using PHP. This code will protect the user login information by encrypting the password with md5. The code use a php POST method to call a special php built-in function md5() an advance encrypting tool that protect the user password by just passing the string in order to encrypt it into a protected password.
We will be using PHP as a scripting language and interpreter that is used primarily on any web server including xampp, wamp, etc. It is being used on famous websites and it has a modern technology that can easily be used by the next generation.
Getting Started:
First you have to download & install XAMPP or any local server that run PHP scripts. Here's the link for XAMPP server https://www.apachefriends.org/index.html.
And, this is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.
Creating Database
Open your database web server then create a database name in it db_login_md5, after that click Import then locate the database file inside the folder of the application then click ok.
![tut1](https://www.sourcecodester.com/sites/default/files/2020-02-25_22_25_16-localhost_127.0.0.1_db_login_md5_phpmyadmin_4.8.3.png)
You can also add the sample user table programmatically. Just copy and paste the script below in the SQL field in PHPMyAdmin and click GO.
- (1, 'admin', '21232f297a57a5a743894a0e4a801fc3', 'Admnistrator');
Creating the database connection
Open your any kind of text editor(notepad++, etc..). Then just copy/paste the code below then name it conn.php.
- <?php
- if(!$conn){
- }
- ?>
Creating The Interface
This is where we will create a simple form for our application. To create the forms simply copy and write it into your text editor, then save it as shown below.
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
- <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
- </head>
- <body>
- <nav class="navbar navbar-default">
- <div class="container-fluid">
- <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
- </div>
- </nav>
- <div class="col-md-3"></div>
- <div class="col-md-6 well">
- <h3 class="text-primary">Login App With md5 Encryption Using PHP Source Code</h3>
- <hr style="border-top:1px dotted #ccc;"/>
- <div class="col-md-4">
- <form method="POST" >
- <div class="form-group">
- <label>Username</label>
- <input type="text" name="username" maxlength="50" class="form-control" required="required"/>
- </div>
- <div class="form-group">
- <label>Password</label>
- <input type="password" name="password" maxlength="12" class="form-control" required="required"/>
- </div>
- <?php include 'login.php'?>
- <center><button class="btn btn-primary" name="login"><span class="glyphicon glyphicon-log-in"></span> Login</button></center>
- </form>
- </div>
- <div class="col-md-3">
- <h5>DEFAULT USER</h4>
- <h6>Username: admin</h6>
- <h6>Password: admin</h6>
- </div>
- </div>
- </body>
- </html>
- <!DOCTYPE html>
- <?php
- require_once 'conn.php';
- }
- ?>
- <html lang="en">
- <head>
- <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
- <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
- </head>
- <body>
- <nav class="navbar navbar-default">
- <div class="container-fluid">
- <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
- </div>
- </nav>
- <div class="col-md-3"></div>
- <div class="col-md-6 well">
- <h3 class="text-primary">Login App With md5 Encryption Using PHP Source Code</h3>
- <hr style="border-top:1px dotted #ccc;"/>
- <?php
- $query=mysqli_query($conn, "SELECT * FROM `user` WHERE `user_id`='$_SESSION[user_id]'") or die(mysqli_error());
- ?>
- <div class="col-md-4">
- <h1>WELCOME</h1>
- <h3 class="text-primary"><?php echo $fetch['name']?></h3>
- <a href="logout.php">Logout</a>
- </div>
- </div>
- </body>
- </html>
Creating the Main Function
This code contains the minor function of the application. This code will login the user account with a md5 encryption. To do this just kindly write these block of codes inside the text editor, then save it as shown below.
login.php- <?php
- require_once 'conn.php';
- $username = $_POST['username'];
- $query = mysqli_query($conn, "SELECT * FROM `user` WHERE `username` = '$username' && `password` = '$password'") or die(mysqli_error());
- if($rows > 0){
- $_SESSION['user_id'] = $fetch['user_id'];
- }else{
- echo "<center><label class='text-danger'>Invalid username or password!</label></center>";
- }
- }
- ?>
- <?php
- ?>
DEMO
There you have it, we successfully created a Login App With md5 Encryption using PHP. I hope that this simple tutorial helps you to what you are looking for. For more updates and tutorials just kindly visit this site.
Enjoy Coding!Comments
Add new comment
- Add new comment
- 4697 views