How Session Works and How to create it PHP, MySQLi

Language
This tutorial will teach you basic knowledge about php session and an example on how to create one. A session is a method used to store data in a variable that can be used in all pages in a website/php program. Most of the time, sessions are used to determine the user that access that system. In this tutorial, I will give you an idea on how to create a session to determine the user upon login.

Creating our Database

First, we're going to create a database that will store our data. 1. Open phpMyAdmin. 2. Click databases, create a database and name it as "login". 3. After creating a database, click the SQL and paste the below code to create a table. See image below for detailed instruction.
  1. CREATE TABLE `user` (
  2.   `userid` INT(11) NOT NULL AUTO_INCREMENT,
  3.   `username` VARCHAR(30) NOT NULL,
  4.   `password` VARCHAR(30) NOT NULL,
  5.   `fullname` VARCHAR(60) NOT NULL,
  6.         PRIMARY KEY (`userid`)
  7. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
session

Inserting Data into our Table

Next, we insert data into our database for us to determine the user. In this tutorial, we are going to insert 2 rows in our table to differentiate both users and for us to further understand how session works. 1. Click the database "login" that we created earlier. 2. Click SQL and paste the below code to insert the data.
  1. INSERT INTO `user` ( `username`, `password`, `fullname`) VALUES
  2. ('user1', 'user1', 'neovic devierte'),
  3. ('user2', 'user2', 'lee ann');

Creating our Connection

Next, we create a database connection and save it as "conn.php". This file will serve as our bridge between our form and our database.
  1. <?php
  2. $conn = mysqli_connect("localhost","root","","login");
  3.  
  4. // Check connection
  5.   {
  6.   echo "Failed to connect to MySQL: " . mysqli_connect_error();
  7.   }
  8. ?>

Creating our Login Form

Next step is creating our login form and name it "index.php". In this form, the user will input his/her username and password and we're going to determine that user upon submission with the use of session. To create the form, open your HTML code editor and paste the code below after the tag.
  1. <?php session_start(); ?>
  2.  
  3. <!DOCTYPE html>
  4.         <title>Session Example</title>
  5. </head>
  6.         <h2>Login Form</h2>
  7.         <form method="POST" action="login.php">
  8.                 <label>Username:</label> <input type="text" name="username"><br><br>
  9.                 <label>Password:</label> <input type="password" name="password"><br><br>
  10.                 <input type="submit" name="submit">
  11.         </form>
  12.         <br>
  13.         <?php
  14.                
  15.                 if (isset($_SESSION['message'])){
  16.                         echo $_SESSION['message'];
  17.                 }
  18.                 unset($_SESSION['message']);
  19.         ?>
  20. </body>
  21. </html>
Notice that we have declared a function "session_start()". This function determines that the session has started and a session has been created. Without this function, sessions won't work.

Creating our Login Script

Next step is to create our login script and name it "login.php". This script will validate the user's input and determine whether the user exists in our table or not. If the user is found, the script will store the id of the user through session. To create the script, open your HTML code editor and paste the code below after the tag.
  1. <?php
  2.         session_start();
  3.         include('conn.php');
  4.        
  5.         $username=$_POST['username'];
  6.         $password=$_POST['password'];
  7.        
  8.         $query=mysqli_query($conn,"select * from `user` where username='$username' && password='$password'");
  9.         $numrows=mysqli_num_rows($query);
  10.        
  11.         if ($numrows==0){
  12.                 $_SESSION['message']="User not found!";
  13.                 header('location:index.php');
  14.         }
  15.         else{
  16.                 $row=mysqli_fetch_array($query);
  17.                 $_SESSION['id']=$row['userid'];
  18.                 header('location:success.php');
  19.         }
  20. ?>

Creating our Destination Page

Lastly, we create a destination page if the user existed in our table and name it "success.php". This page will also show to details of the user found. To create the script, open your HTML code editor and paste the code below after the tag.
  1. <?php
  2.         session_start();
  3.         include('conn.php');
  4.         $userid=$_SESSION['id'];
  5.        
  6.         $userq=mysqli_query($conn,"select * from `user` where userid='$userid'");
  7.         $userrow=mysqli_fetch_array($userq);
  8. ?>
  9. <!doctype html>
  10.         <title>Session Example</title>
  11. </head>
  12.         <h2>User Found! </h2>
  13.         Welcome, <?php echo $userrow['fullname']; ?>
  14. </body>
  15. </html>

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.

Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.

FOR YOUR OWN SAFETY, PLEASE:

1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

Add new comment