Simple FB-like Comment using PHP, MySQLi, AJAX and JQuery

In this tutorial, I'm gonna show you how to create a simple fb-like comment using PHP, MySQLi, AJAX and JQuery. This tutorial will show you how to comment on one post which I've prepared as a sample. This does not a include 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 post and comment data. 1. Open phpMyAdmin. 2. Click databases, create a database and name it as "fb_db". 3. After creating a database, click the SQL and paste the below codes. See image below for detailed instruction.
  1. CREATE TABLE `comment` (
  2.   `commentid` INT(11) NOT NULL AUTO_INCREMENT,
  3.   `postid` INT(11) NOT NULL,
  4.   `userid` INT(11) NOT NULL,
  5.   `comment_text` VARCHAR(200) NOT NULL,
  6.   `comment_date` datetime NOT NULL,
  7. PRIMARY KEY(`commentid`)
  8. ) 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;
comment

Inserting Data into our Database

Next, we insert sample data into our database. This includes our sample post and our sample users. If you want, you may learn How to Insert Post. 1. Click "fb_db" database that we have created. 2. Click SQL and paste the codes below.
  1. INSERT INTO `post` (`post_text`, `post_date`) VALUES
  2. ('eureka', '2017-08-16 03: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","","fb_db");
  5. if (!$conn) {
  6.         die("Connection failed: " . mysqli_connect_error());
  7. }
  8.  
  9. ?>

Creating our Login Page

First, we need to identify who's going to comment in our sample post. So, we need to create a login page. In this tutorial, I have created a simple login but if you want, you may learn How to Create a Login with Validation. We name our login page as "index.php".
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>FB Comment 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 for us to comment. 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 Timeline Page

Next step is to create our timeline page. In this page, we can comment to our sample post that we created. We name this page as "home.php". Also included in this page our jquery script which is included in the file of this tutorial.
  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 Comment using PHP/MySQLi, Ajax/JQuery</title>
  16. </head>
  17. <body>
  18. <div>
  19.         <h4>Welcome, <?php echo $urow['your_name']; ?> <a href="logout.php">Logut</a></h4>
  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.                                 Comments: <br><br>
  29.                                 <div id="result"></div>
  30.                                 <form>
  31.                                         <input type="text" id="comment">
  32.                                         <input type="hidden" value="<?php echo $row['postid']; ?>" id="id">
  33.                                         <input type="submit" value="Comment" id="add_comment">
  34.                                 </form>
  35.                                 </div><br>
  36.                         <?php
  37.                 }
  38.         ?>
  39. </div>
  40.  
  41. <script src = "jquery-3.1.1.js"></script>      
  42. <script type = "text/javascript">
  43.         $(document).ready(function(){
  44.         displayResult();
  45.         /*      Add Comment     */     
  46.                
  47.                 $('#add_comment').on('click', function(){
  48.                         if($('#comment').val() == ""){
  49.                                 alert('Please comment something first');
  50.                         }else{
  51.                                
  52.                                 $comment = $('#comment').val();
  53.                                 $id = $('#id').val();
  54.                                 $.ajax({
  55.                                         type: "POST",
  56.                                         url: "add_comment.php",
  57.                                         data: {
  58.                                                 comment: $comment,
  59.                                                 id: $id,
  60.                                         },
  61.                                         success: function(){
  62.                                                 displayResult();
  63.                                         }
  64.                                 });
  65.                         }      
  66.                 });
  67.         /*****  *****/
  68.         });
  69.        
  70.         function displayResult(){
  71.                 $id = $('#id').val();
  72.                 $.ajax({
  73.                         url: 'add_comment.php',
  74.                         type: 'POST',
  75.                         async: false,
  76.                         data:{
  77.                                 id: $id,
  78.                                 res: 1
  79.                         },
  80.                         success: function(response){
  81.                                 $('#result').html(response);
  82.                         }
  83.                 });
  84.         }
  85.        
  86. </script>
  87. </body>
  88. </html>

Creating our Add Comment Code

Next, we create our add comment code that will function upon clicking of our Comment button. We name this as "add_comment.php".
  1. <?php
  2.         include ('conn.php');
  3.         session_start();
  4.         if(isset($_POST['comment'])){          
  5.                 $comment = addslashes($_POST['comment']);
  6.                 $id = $_POST['id'];
  7.                 mysqli_query($conn,"insert into `comment` (postid, userid, comment_text, comment_date) values ('$id', '".$_SESSION['userid']."', '$comment', NOW())") or die(mysqli_error());
  8.         }
  9. ?>
  10. <?php
  11.         if(isset($_POST['res'])){
  12.                 $id = $_POST['id'];
  13.         ?>
  14.         <?php
  15.                 $query=mysqli_query($conn,"select * from `comment` left join `user` on user.userid=comment.userid where postid='$id' order by comment_date asc") or die(mysqli_error());
  16.                 while($row=mysqli_fetch_array($query)){
  17.         ?>     
  18.                 <div>
  19.                         Date: <?php echo date('M-d-Y h:i A',strtotime($row['comment_date'])); ?> <br>
  20.                         User: <?php echo $row['your_name']; ?> <br>
  21.                         Comment: <?php echo $row['comment_text']; ?>
  22.                 </div>
  23.                 <br>
  24.         <?php
  25.                 }
  26.         }      
  27. ?>

Creating our Logout Page

Last step is to create our logout page. We name this as "logout.php".
  1. <?php
  2.         session_start();
  3.  
  4.         session_destroy();
  5.         header('location:index.php');
  6.  
  7. ?>

Comments

Add new comment