In this tutorial we will create a
Simple Login Script With Remember me Feature. PHP is a server-side scripting language designed primarily for web development. Using PHP, you can let your user directly interact with the script and easily to learned its syntax. It is mostly used by a newly coders for its user friendly environment. So Let's do the coding.
Before we 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.
Creating the database Connection
This is the where the database connection, just simple copy/paste the provided code below
and save it as 'connect.php'.
<?php
$conn = new mysqli("localhost", "root", "", "phptut");
if(!$conn){
die("Fatal Error: Connection Faileds");
}
?>
The Main Interface
This is the where the database connection, just simple copy/paste the provided code below then save it as 'index.php'.
<!DOCTYPE html>
<html lang = "en">
<head>
<meta charset = "UTF-8" name = "viewport" content = "width=device-width"/>
<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">PHP - Simple Login With Remember me Script</h3>
<hr style = "border-top:1px dotted #000;"/>
<div class = "col-md-1"></div>
<div class = "col-md-10" style = "box-shadow:0px 0px 1px 0.5px #000; border-radius:1px;">
<h4>Login Here...</h4><br />
<form>
<div class = "form-group">
<label>Username:</label>
<input type = "text" id = "username" name = "username" value = "
<?php if(ISSET($_COOKIE['username'])){echo $_COOKIE['username'];}?>" class = "form-control"/>
</div>
<div class = "form-group">
<label>Password:</label>
<input type = "password" id = "password" name = "password" value = "
<?php if(ISSET($_COOKIE['password'])){echo $_COOKIE['password'];}?>" class = "form-control"/>
</div>
<div class = "form-group">
<input type = "checkbox" id = "remember" name = "remember"
<?php if(ISSET($_COOKIE['username'])){echo 'checked';}?> /><label>Remember me</label>
</div>
<br />
<br />
<div class = "form-group">
<button type = "button" id = "login" class = "btn btn-primary form-control" name = "login" >LOGIN</button>
</div>
<br />
</form>
</div>
</div>
</body>
<script src = "js/jquery-3.2.1.js"></script>
<script src = "js/script.js"></script>
</html>
The Login Script
This is where the code will login the user if the username an password are valid. To do that copy/paste the code below and save it 'login.php'.
<?php
require_once 'connect.php';
$username = $_POST['username'];
$password = $_POST['password'];
$query = $conn->query("SELECT * FROM `member` WHERE `username` = '$username' && `password` = '$password'");
$row = $query->num_rows;
$fetch = $query->fetch_array();
if($row > 0){
$_SESSION['mem_id'] = $fetch['mem_id'];
if(!empty($_POST['remember'])){
setcookie("username", $_POST['username'], time()+(10 * 365 * 24 * 60 * 60));
setcookie("password", $_POST['password'], time()+(10 * 365 * 24 * 60 * 60));
}else{
if(ISSET($_COOKIE['username'])){
}
if(ISSET($_COOKIE['password'])){
}
}
echo 0;
}else{
echo 1;
}
?>
The Home Script
This is where the interface of home page is located. To make this just simply copy/paste the code below and save it as 'home.php'.
<!DOCTYPE html>
<?php
require_once 'check.php'
?>
<html lang = "en">
<head>
<meta charset = "UTF-8" name = "viewport" content = "width=device-width"/>
<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">PHP - Simple Login With Remember me Script</h3>
<hr style = "border-top:1px dotted #000;"/>
<div class = "col-md-1"></div>
<div class = "col-md-10">
<?php
require 'connect.php';
$query = $conn->query("SELECT * FROM `member` WHERE `mem_id` = '$_SESSION[mem_id]'");
$fetch = $query->fetch_array();
echo $fetch['username'];
?>
<center><a href = "logout.php"><button class = "btn btn-success">Logout</button></a></center>
</div>
</div>
</body>
</html>
The Logout Script
This code will unset the session that have been login. To do that just simply copy/paste the code below and save it ''logout.php'.
<?php
require_once 'connect.php';
header('location: index.php');
?>
The Validator Script
This code will validate the user account if is already login if not will force back to login page. To do that copy/paste the code below then save it as 'check.php'.
<?php
if(!ISSET($_SESSION['mem_id'])){
}
?>
The jQuery Script
This is script will processed the users input then will be later send to PHP script to be a readable data. To do that just simply copy/paste the code below and save it as "script.js".
$(document).ready(function(){
$('#login').on('click', function(){
if($('#username').val() == "" || $('#password').val() == ""){
alert("Please enter something!");
}else{
username = $('#username').val();
password = $('#password').val();
remember = $('#remember:checked').val();
$.ajax({
url: "login.php",
type: "POST",
data: {
username: username,
password: password,
remember: remember
},
success: function(data){
if(data == 0){
window.location = "home.php";
}else if(data == 1){
alert("Invalid username or password");
}
}
});
}
});
});
There you have it we simple created a simple
Login Script With Remember me Feature. I hope that this simple tutorial help you to your projects. For more updates and tutorial just kindly visit this site. Enjoy Coding!!