Easy and Simple Like/Unlike using AJAX/jQuery

In this tutorial, I'm going to show you how to create a simple like/unlike using AJAX/JQuery. The purpose of using ajax/jquery is that you won't need to reload the page after liking/unliking. This tutorial won't give you a good design but will give you idea on the topic.

Creating our Database

First, we're going to create our database. This will store our sample data. 1. Open phpMyAdmin. 2. Click databases, create a database and name it as "like". 3. After creating a database, click the SQL and paste the below code. See image below for detailed instruction.
  1. CREATE TABLE `like` (
  2.   `likeid` INT(11) NOT NULL AUTO_INCREMENT,
  3.   `postid` INT(11) NOT NULL,
  4.   `userid` INT(11) NOT NULL,
  5. PRIMARY KEY(`likeid`)
  6. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  1. CREATE TABLE `post` (
  2.   `postid` INT(11) NOT NULL AUTO_INCREMENT,
  3.   `post_text` VARCHAR(200) NOT NULL,
  4.   `post_date` datetime NOT NULL,
  5. PRIMARY KEY(`postid`)
  6. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
  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.   `your_name` VARCHAR(60) NOT NULL,
  6. PRIMARY KEY(`userid`)
  7. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
like

Inserting our Sample Data

Next Step is to insert our sample data into our database. 1.Click "like" database that we have created earlier. 2.Click SQL and paste the below code.
  1. INSERT INTO `post` (`post_text`, `post_date`) VALUES
  2. ('I got it', '2017-08-02 08:00:00'),
  3. ('Eureka', '2017-09-23 08:00:00'),
  4. ('Awesome', '2017-09-04 08:00:00'),
  5. ('Wow', '2017-09-21 00:00:00');
  1. INSERT INTO `user` (`username`, `password`, `your_name`) VALUES
  2. ('neovic', 'devierte', 'neovic devierte'),
  3. ('lee', 'ann', 'lee ann');

Creating our Connection

Next step is to create a database connection and save it as "conn.php". This file will serve as our bridge between our form and our database. To create the file, open your HTML code editor and paste the code below after the tag.
  1. <?php
  2.  
  3. //MySQLi Procedural
  4. $conn = mysqli_connect("localhost","root","","like");
  5. if (!$conn) {
  6.         die("Connection failed: " . mysqli_connect_error());
  7. }
  8.  
  9. ?>

Creating our Login Page

Next, we create our login page to determine our user that we are going to use in liking/unliking. Use the sample users that we have inserted in logging into the system. We name this as "index.php".
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>FB Like using PHP/MySQLi, Ajax/JQuery</title>
  5. </head>
  6. <body>
  7. <h2>Login Here</h2>
  8. <form method="POST" action="login.php">
  9.  Username: <input type="text" name="username">
  10.  Password: <input type="password" name="password"> <br><br>
  11.  <input type="submit" value="Login">
  12. </form><br>
  13. <?php
  14.         session_start();
  15.         if (isset($_SESSION['message'])){
  16.         echo $_SESSION['message'];
  17.         unset ($_SESSION['message']);
  18.         }
  19. ?>
  20. </body>
  21. </html>

Creating our Login Code

Next step is to create our login code that will check the user login input. We name this as "login.php".
  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' and password='$password'");
  9.        
  10.         if (mysqli_num_rows($query)<1){
  11.                 $_SESSION['message']="Login Error. Please Try Again";
  12.                 header('location:index.php');
  13.         }
  14.         else{
  15.                 $row=mysqli_fetch_array($query);
  16.                 $_SESSION['userid']=$row['userid'];
  17.                 header('location:home.php');
  18.         }
  19.  
  20. ?>

Creating our Login Success Page

Next, we create our goto page if login is successful. This will be the page that our sample post will be posted for us to like. We name this as "home.php".
  1. <?php
  2.         include('conn.php');
  3.         session_start();
  4.         if (!isset($_SESSION['userid']) ||(trim ($_SESSION['userid']) == '')) {
  5.         header('location:index.php');
  6.     exit();
  7.         }
  8.        
  9.         $uquery=mysqli_query($conn,"select * from `user` where userid='".$_SESSION['userid']."'");
  10.         $urow=mysqli_fetch_assoc($uquery);
  11. ?>
  12. <!DOCTYPE html>
  13. <html>
  14. <head>
  15. <title>Simple FB Like using PHP/MySQLi, Ajax/JQuery</title>
  16. </head>
  17. <body>
  18. <div>
  19.         <h2>Welcome, <?php echo $urow['your_name']; ?> <a href="logout.php">Logout</a></h2>
  20.         <h2>Timeline</h2>
  21.         <?php
  22.                 $query=mysqli_query($conn,"select * from `post`");
  23.                 while($row=mysqli_fetch_array($query)){
  24.                         ?>
  25.                                 <div>
  26.                                 Date: <?php echo date('M-d-Y h:i A',strtotime($row['post_date'])); ?><br>
  27.                                 Post: <?php echo $row['post_text']; ?><br>
  28.                                 <div>
  29.                                        
  30.                                                 <?php
  31.                                                         $query1=mysqli_query($conn,"select * from `like` where postid='".$row['postid']."' and userid='".$_SESSION['userid']."'");
  32.                                                         if (mysqli_num_rows($query1)>0){
  33.                                                                 ?>
  34.                                                                 <button value="<?php echo $row['postid']; ?>" class="unlike">Unlike</button>
  35.                                                                 <?php
  36.                                                         }
  37.                                                         else{
  38.                                                                 ?>
  39.                                                                 <button value="<?php echo $row['postid']; ?>" class="like">Like</button>
  40.                                                                 <?php
  41.                                                         }
  42.                                                 ?>
  43.                                         <span id="show_like<?php echo $row['postid']; ?>">
  44.                                                 <?php
  45.                                                         $query3=mysqli_query($conn,"select * from `like` where postid='".$row['postid']."'");
  46.                                                         echo mysqli_num_rows($query3);
  47.                                                 ?>
  48.                                         </span>
  49.                                 </div>
  50.                                 </div><br>
  51.                         <?php
  52.                 }
  53.         ?>
  54. </div>
  55.  
  56. <script src = "jquery-3.1.1.js"></script>      
  57. <script type = "text/javascript">
  58.         $(document).ready(function(){
  59.                
  60.                 $(document).on('click', '.like', function(){
  61.                         var id=$(this).val();
  62.                         var $this = $(this);
  63.                         $this.toggleClass('like');
  64.                         if($this.hasClass('like')){
  65.                                 $this.text('Like');
  66.                         } else {
  67.                                 $this.text('Unlike');
  68.                                 $this.addClass("unlike");
  69.                         }
  70.                                 $.ajax({
  71.                                         type: "POST",
  72.                                         url: "like.php",
  73.                                         data: {
  74.                                                 id: id,
  75.                                                 like: 1,
  76.                                         },
  77.                                         success: function(){
  78.                                                 showLike(id);
  79.                                         }
  80.                                 });
  81.                 });
  82.                
  83.                 $(document).on('click', '.unlike', function(){
  84.                         var id=$(this).val();
  85.                         var $this = $(this);
  86.                         $this.toggleClass('unlike');
  87.                         if($this.hasClass('unlike')){
  88.                                 $this.text('Unlike');
  89.                         } else {
  90.                                 $this.text('Like');
  91.                                 $this.addClass("like");
  92.                         }
  93.                                 $.ajax({
  94.                                         type: "POST",
  95.                                         url: "like.php",
  96.                                         data: {
  97.                                                 id: id,
  98.                                                 like: 1,
  99.                                         },
  100.                                         success: function(){
  101.                                                 showLike(id);
  102.                                         }
  103.                                 });
  104.                 });
  105.                
  106.         });
  107.        
  108.         function showLike(id){
  109.                 $.ajax({
  110.                         url: 'show_like.php',
  111.                         type: 'POST',
  112.                         async: false,
  113.                         data:{
  114.                                 id: id,
  115.                                 showlike: 1
  116.                         },
  117.                         success: function(response){
  118.                                 $('#show_like'+id).html(response);
  119.                                
  120.                         }
  121.                 });
  122.         }
  123.        
  124. </script>
  125. </body>
  126. </html>

Creating our Like Code

Next, we create our like code. This will be the code that will process the uses click on our like button. We name this as "like.php".
  1. <?php
  2.         include ('conn.php');
  3.         session_start();
  4.                
  5.         if (isset($_POST['like'])){            
  6.                
  7.                 $id = $_POST['id'];
  8.                 $query=mysqli_query($conn,"select * from `like` where postid='$id' and userid='".$_SESSION['userid']."'") or die(mysqli_error());
  9.                
  10.                 if(mysqli_num_rows($query)>0){
  11.                         mysqli_query($conn,"delete from `like` where userid='".$_SESSION['userid']."' and postid='$id'");
  12.                 }
  13.                 else{
  14.                         mysqli_query($conn,"insert into `like` (userid,postid) values ('".$_SESSION['userid']."', '$id')");
  15.                 }
  16.         }              
  17. ?>

Creating our Show Like Code

Next step is to create our show-like code. This code will show the number of likes in the post. We name this as "show_like.php".
  1. <?php
  2.         session_start();
  3.         include('conn.php');
  4.        
  5.         if (isset($_POST['showlike'])){
  6.                 $id = $_POST['id'];
  7.                 $query2=mysqli_query($conn,"select * from `like` where postid='$id'");
  8.                 echo mysqli_num_rows($query2); 
  9.         }
  10. ?>

Creating our Logout Code

Lastly, we create our logout code. We name this as "logout.php".
  1. <?php
  2.         session_start();
  3.  
  4.         session_destroy();
  5.         header('location:index.php');
  6.  
  7. ?>

Add new comment