Login Logout Practice for Beginners with Session using PDO in PHP
Submitted by alpha_luna on Monday, September 5, 2016 - 11:24.
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.
Creating Home Page
Kindly copy and paste this simple source code and save it as "home.php".
Logout Query
Copy and paste this simple query for the logout with session and save it as "logout.php".
And, this is the Home Page.
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.
- <form class="form-signin" method="post" id="login-form">
- <hr />
- <div class="alert alert-info" role="alert">
- Email:
- <br />
- <br />
- Password:
- </div>
- <div id="error">
- <!-- error will be shown here ! -->
- </div>
- <div class="form-group">
- <input type="email" class="form-control" placeholder="Email address" name="user_email" id="user_email" autofocus="autofocus" />
- </div>
- <div class="form-group">
- <input type="password" class="form-control" placeholder="Password" name="user_password" id="password" />
- </div>
- <hr />
- <div class="form-group">
- <button type="submit" class="btn btn-default" name="btn-login" id="btn-login">
- </button>
- </div>
- </form>
- <?php
- {
- }
- ?>
Output
This is the Login Form for the user where they can type the login information.

Add new comment
- 695 views