how to append my click result in ajax success?

how to append my click result in ajax success?

i  made simple like code that can any user inside the chat room can make like for public message
  1. <?php

  2.   // Set the header to accept JSON

  3.   // Insert your database connection here (should probably use mysqli)
  4.   $host     =  "localhost"; // or IP or whatever
  5.   $db_user  =  "root";
  6.   $db_pass  =  "xx";
  7.   $db_name  =  "x";
  8.   mysql_connect($servername, $db_user, $db_pass) or mysql_error();
  9.   mysql_select_db($db_name) or db_name();

  10.   // Grab user id from post data
  11. if (isset($_POST['likeid'])){
  12.   // Write the query
  13.     $sql_select = mysql_query("SELECT likes FROM chat WHERE likes > 1");
  14. $sql_update = "UPDATE chat SET likes = likes +1 WHERE post_id = '" . (int)$_POST['likeid'] . "'";
  15.    $_SESSION["likeid"]= $_POST["likeid"];

  16.     echo "Yes, Like Sent";    
  17. } else {    
  18.     echo "N0, Like is not set";

  19.   // Encode a JSON response if the query is successful
  20.  }
  21.   if(mysql_query($sql_update)){

  22.     echo("Success");

  23.   }
  24.  // this is the php variables to show the like container for each message
  25. $likedom ="<input type='hidden' name='likeid' value='" . (int)$chat['post_id'] . "' />
  26. <div class=\"container\">
  27. <button class=\"like-button\" value=\"" . $chat['post_id'] . "\"> <i class=\"fa fa-gratipay fa-2x like-icon\"></i><like name=\"showlike\" id=\"counter\">" . $chat['likes'] . "</like></button>
  28. </div>";
  29. ?> 
and my ajax code
  1.  $(document).on('click', '.like-button', function(){
  2. var id=$(this).val();
  3. var $this = $(this);
  4. $.ajax({
  5. type: "POST",
  6. url: "likes.php",
  7. data: {
  8. likeid: id,
  9. increment: true,
  10. like: 1,
  11. },
  12. success: function(data){
  13. console.log(data);

  14. }
  15. });

  16. });
Everything is working fine..just i have simple problem
when the user click on the like button the click count not showing 
but the click count stored in the mysql row ( working fine )
what i need to show the click +1 on the notification like this pic

Thanks