PHP - Complete Registration Login Form In SQLite

In this tutorial we will create a Complete Registration Login Form In SQLite using PHP. This code will login and register an user account for accessing when user submit the form inputs. The code use two functionalities that can create new user account by the use of SQLite INSERT query and after the account created the user can login using SELECT query. This a free program, you can apply this to your system as your own. We will be using SQLite that provides an interface for accessing the database. It includes class interfaces to the SQL commands. And also it allows you to create SQL functions and aggregate using PHP.

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/. Installing SQLite Browser We will now then install the SQLite data viewer, here's the link for the DB Browser for SQLite http://sqlitebrowser.org/.

Setting Up SQLite

First, we are going to enable SQLite 3 in our PHP.
  1. Open localhost server folder XAMPP, etc and locate php.ini.
  2. Open php.ini and enable sqlite3 by removing the semicolon in the line. tut1
  3. Save changes and Restart Server.

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.
  1. <?php
  2.         $conn=new SQLite3('db/db_user') or die("Unable to open database!");
  3.         $query="CREATE TABLE IF NOT EXISTS `user`(user_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, username TEXT, password TEXT, name TEXT)";       
  4.         $conn->exec($query);
  5. ?>

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 you text editor, then save it as shown below. index.php
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.         <head>
  4.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6.         </head>
  7. <body>
  8.         <nav class="navbar navbar-default">
  9.                 <div class="container-fluid">
  10.                         <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  11.                 </div>
  12.         </nav>
  13.         <div class="col-md-3"></div>
  14.         <div class="col-md-6 well">
  15.                 <h3 class="text-primary">PHP - Complete Registration Login Form In SQLite</h3>
  16.                 <hr style="border-top:1px dotted #ccc;"/>
  17.                 <div class="col-md-5">
  18.                         <form action="" method="POST">
  19.                                 <div class="form-group">
  20.                                         <label>Username</label>
  21.                                         <input type="text" name="username" class="form-control" required="required"/>
  22.                                 </div>
  23.                                 <div class="form-group">
  24.                                         <label>Password</label>
  25.                                         <input type="password" name="password" class="form-control" required="required"/>
  26.                                 </div>
  27.                                
  28.                                 <center><button name="login" class="btn btn-primary"><span class="glyphicon glyphicon-log-in"></span> Login</button></center>
  29.                                
  30.                         </form>
  31.                         <br />
  32.                         <?php include 'login.php'?>
  33.                 </div>
  34.                 <div class="col-md-2"></div>
  35.                 <div class="col-md-5">
  36.                         <div class="alert alert-info">No account yet? Register here...</div>
  37.                         <form action="" method="POST">
  38.                                 <div class="form-group">
  39.                                         <label>Name</label>
  40.                                         <input type="text" name="name" class="form-control" required="required"/>
  41.                                 </div>
  42.                                 <div class="form-group">
  43.                                         <label>Username</label>
  44.                                         <input type="text" name="username" class="form-control" required="required"/>
  45.                                 </div>
  46.                                 <div class="form-group">
  47.                                         <label>Password</label>
  48.                                         <input type="password" name="password" class="form-control" required="required"/>
  49.                                 </div>
  50.                
  51.                                 <center><button name="register" class="btn btn-success">Register</button></center>
  52.                                
  53.                         </form>
  54.                         <br />
  55.                         <?php include'register.php'?>
  56.                 </div>
  57.         </div>
  58.  
  59. </body>
  60. </html>
home.php
  1. <?php
  2.         session_start();
  3.         if(!ISSET($_SESSION['user_id'])){
  4.                 header('location: index.php');
  5.         }
  6. ?>
  7. <!DOCTYPE html>
  8. <html lang="en">
  9.         <head>
  10.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  11.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  12.         </head>
  13. <body>
  14.         <nav class="navbar navbar-default">
  15.                 <div class="container-fluid">
  16.                         <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  17.                 </div>
  18.         </nav>
  19.         <div class="col-md-3"></div>
  20.         <div class="col-md-6 well">
  21.                 <h3 class="text-primary">PHP - Complete Registration Login Form In SQLite</h3>
  22.                 <hr style="border-top:1px dotted #ccc;"/>
  23.                 <center><h1>WELCOME USER</h1></center>
  24.                 <a href="logout.php">logout</a>
  25.         </div>
  26.  
  27. </body>
  28. </html>

Creating the Main Function

This code contains the main function of the application. This code will register and login the user account. To do this just copy and write these block of codes as shown below inside the text editor, then save it as shown below. register.php
  1. <?php
  2.         require_once'conn.php';
  3.         if(ISSET($_POST['register'])){
  4.                 $name=$_POST['name'];
  5.                 $username=$_POST['username'];
  6.                 $password=$_POST['password'];
  7.  
  8.  
  9.                 $query="INSERT INTO `user` (name, username, password) VALUES('$name', '$username', '$password')";
  10.  
  11.                 $conn->exec($query);
  12.  
  13.                
  14.                 echo "<center><h4 class='text-success'>Successfully registered!</h4></center>";
  15.         }
  16. ?>
login.php
  1. <?php
  2.         session_start();
  3.         require_once 'conn.php';
  4.        
  5.         if(ISSET($_POST['login'])){
  6.                 $username = $_POST['username'];
  7.                 $password = $_POST['password'];
  8.                 $query1=$conn->query("SELECT * FROM `user` WHERE `username`='$username' AND `password`='$password'");
  9.                 $row1=$query1->fetchArray();
  10.                
  11.                 $query=$conn->query("SELECT COUNT(*) as count FROM `user` WHERE `username`='$username' AND `password`='$password'");
  12.                 $row=$query->fetchArray();
  13.                 $count=$row['count'];
  14.                 if($count > 0){
  15.                         $_SESSION['user_id']=$row1['user_id'];
  16.                         header('location: home.php');
  17.                 }else{
  18.                         echo "<div class='alert alert-danger'>Invalid username or password</div>";
  19.                 }
  20.         }
  21. ?>
logout.php
  1. <?php
  2.         session_start();
  3.         session_destroy();
  4.         header('location: index.php');
  5. ?>
There you have it we successfully created a Complete Registration Login Form In SQLite using PHP. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!!!

Add new comment