Login Logout Practice for Beginners with Session using PDO in PHP

In this tutorial, we are going to learn Login Logout Practice for Beginners with Session using PDO in PHP. This simple tutorial, you can learn how to log in and log out with using session in PHP. The target of this tutorial is for the beginners who willing to learn how to log in and log out with a session in simple ways and simple source code that we are going to use. You can also check the live demo of this simple tutorial, so you can get an idea and you can try this out, let's start coding. Creating Simple Markup It contains two text field for the email and password where the user can type the information to log in.
  1.        
  2. <form class="form-signin" method="post" id="login-form">
  3.         <h2 class="form-signin-heading" style="text-align:center;">LOG IN to SOURCECODESTER</h2>
  4.         <hr />
  5.         <div class="alert alert-info" role="alert">
  6.                         Email:
  7.                 <b style="color:blue;">[email protected]</b>
  8.                 <br />
  9.                 <br />
  10.                         Password:
  11.                 <b style="color:blue;">password</b>
  12.         </div>
  13.         <div id="error">
  14.                 <!-- error will be shown here ! -->
  15.         </div>
  16.         <div class="form-group">
  17.                 <input type="email" class="form-control" placeholder="Email address" name="user_email" id="user_email" autofocus="autofocus" />
  18.                 <span id="check-e"></span>
  19.         </div>
  20.         <div class="form-group">
  21.                 <input type="password" class="form-control" placeholder="Password" name="user_password" id="password" />
  22.         </div>
  23.         <hr />
  24.         <div class="form-group">
  25.                 <button type="submit" class="btn btn-default" name="btn-login" id="btn-login">
  26.                         <span class="glyphicon glyphicon-log-in"></span> &nbsp; Sign In
  27.                        
  28.                 </button>
  29.         </div>
  30. </form>
Creating Home Page Kindly copy and paste this simple source code and save it as "home.php".
  1. <!DOCTYPE html>
  2.         <title>
  3.                
  4.         </title>
  5.        
  6.         <style type="text/css">
  7.         </style>
  8. </head>
  9.  
  10.  
  11. <div class="body-container">
  12.         <div class="container">
  13.                 <div class='alert alert-warning'>
  14.                         <button class='close' data-dismiss='alert'>&times;</button>
  15.                         <h3>Welcome!
  16.                                 <b style="color:blue;">
  17.                                         <?php echo $row['user_name']; ?>
  18.                                 </b>
  19.                         </h3>
  20.                 </div>
  21.         </div>
  22. </div>
  23.  
  24. </body>
  25.  
  26. </html>
Logout Query Copy and paste this simple query for the logout with session and save it as "logout.php".
  1. <?php
  2.         session_start();
  3.         unset($_SESSION['user_session']);
  4.        
  5.         if(session_destroy())
  6.         {
  7.                 header("Location: index.php");
  8.         }
  9. ?>

Output

This is the Login Form for the user where they can type the login information. Result And, this is the Home Page. Result Hope that this simple tutorial that I created may help you to your future projects. Also, for the beginners who want to learn basic of Login Logout with Session using PDO in PHP. If you are interested in programming, we have an example of programs that may help you even just in small ways. Share us your thoughts and comments below. Thank you so much for dropping by and reading this tutorial post. For more updates, don’t hesitate and feel free to visit this website more often and please share this with your friends or email me at [email protected]. Practice Coding. Thank you very much.

Add new comment