PHP - Simple Live Data Search Using Ajax

In this tutorial we will create a Simple Live Data Search Using Ajax. 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. Using Ajax, data could then be passed between the browser and the server, using the XMLHttpRequest API, without having to reload the web page. 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. And this is the link for the jquery that i used in this tutorial https://jquery.com/. Lastly, this is the link for the bootstrap that i used for the layout design https://getbootstrap.com/.

Creating Database

Open your database web server then create a database name in it db_livesearch, after that click Import then locate the database file inside the folder of the application then click ok. tut1

Creating the database connection

Open your any kind of text editor(notepadd++, etc..). Then just copy/paste the code below then name it conn.php.
  1. <?php
  2.         $conn = new mysqli('localhost', 'root', '', 'db_livesearch');
  3.        
  4.         if(!$conn){
  5.                 die("Error: Cam't connect to database!");
  6.         }
  7. ?>

Creating The Interface

This is where we will create the appearance of an application. To create this simply copy and write this block of code inside the text editor, then save it as index.php.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.         <head>
  4.                 <head>
  5.                         <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  6.                         <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  7.                 </head>
  8.         </head>
  9. <body>
  10.         <nav class="navbar navbar-default">
  11.                 <div class="container-fluid">
  12.                         <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  13.                 </div>
  14.         </nav>
  15.         <div class="col-md-3"></div>
  16.         <div class="col-md-6 well">
  17.                 <h3 class="text-primary">PHP - Simple Live Data Search Using Ajax</h3>
  18.                 <hr style="border-top:1px dotted #ccc;"/>
  19.                 <button class="btn btn-primary" data-toggle="modal" data-target="#form_modal"><span class="glyphicon glyphicon-plus"></span> Add Member</button>
  20.                 <br /><br />
  21.                 <div class="form-group">
  22.                         <input class="form-control" type="text" id="search" placeholder="Search"/>
  23.                 </div>
  24.                 <div id="result"></div>
  25.         </div>
  26.        
  27.         <div class="modal fade" id="form_modal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  28.                 <div class="modal-dialog" role="document">
  29.                         <form action="save.php" method="POST">
  30.                                 <div class="modal-content">
  31.                                         <div class="modal-body">
  32.                                                 <div class="col-md-2"></div>
  33.                                                 <div class="col-md-8">
  34.                                                         <div class="form-group">
  35.                                                                 <label>Firstname</label>
  36.                                                                 <input type="text" class="form-control" name="firstname"/>
  37.                                                         </div>
  38.                                                         <div class="form-group">
  39.                                                                 <label>Lastname</label>
  40.                                                                 <input type="text" class="form-control" name="lastname"/>
  41.                                                         </div>
  42.                                                         <div class="form-group">
  43.                                                                 <label>City</label>
  44.                                                                 <input type="text" class="form-control" name="city"/>
  45.                                                         </div>
  46.                                                         <div class="form-group">
  47.                                                                 <label>Postal Code</label>
  48.                                                                 <input type="number" max="9999" class="form-control" name="postal_code"/>
  49.                                                         </div>
  50.                                                 </div>
  51.                                         </div>
  52.                                         <div style="clear:both;"></div>
  53.                                         <div class="modal-footer">
  54.                                                 <button type="button" class="btn btn-danger" data-dismiss="modal"><span class="glyphicon glyphicon-remove"></span> Close</button>
  55.                                                 <button name="save" class="btn btn-primary"><span class="glyphicon glyphicon-save"></span> Save</button>
  56.                                         </div>
  57.                                 </div>
  58.                         </form>
  59.                 </div>
  60.         </div>
  61. </body>
  62. <script src="js/jquery-3.2.1.min.js"></script>
  63. <script src="js/bootstrap.js"></script>
  64. <script src="js/script.js"></script>
  65. </html>

Creating PHP Query

This code contains the query of the application. This code will display the data based on the search input data. And can also store the data from the inputs to the database. To do that copy and write these block of codes inside your text editor and save it as shown below. save.php
  1. <?php
  2.         require_once 'conn.php';
  3.        
  4.         if(ISSET($_POST['save'])){
  5.                 if(!empty($_POST['firstname']) && !empty($_POST['lastname']) && !empty($_POST['city']) && !empty($_POST['postal_code'])){
  6.                         $firstname = $_POST['firstname'];
  7.                         $lastname = $_POST['lastname'];
  8.                         $city = $_POST['city'];
  9.                         $postal_code = $_POST['postal_code'];
  10.                        
  11.                         $conn->query("INSERT INTO `member` VALUES('', '$firstname', '$lastname', '$city', '$postal_code')") or die(mysqli_errno());
  12.                        
  13.                         header('location: index.php');
  14.                        
  15.                 }else{
  16.                         echo "<script>alert('Please complete the required field!')</script>";
  17.                 }
  18.         }
  19. ?>
search.php
  1. <?php
  2.         require_once 'conn.php';
  3.        
  4.         if(ISSET($_POST['search'])){
  5.                 $query = $conn->query("SELECT * FROM `member` WHERE (`lastname` LIKE '%".$_POST['search']."%') OR (`city` LIKE '%".$_POST['search']."%') ");
  6.                
  7.                 $row = $query->num_rows;
  8.                
  9.                 if($row > 0){
  10.                         $output = "";
  11.                                 $output .= "
  12.                         <center><h3>Search Result</h3></center>
  13.                         <table class='table'>
  14.                                 <thead>
  15.                                         <tr>
  16.                                                 <th>Name</th>
  17.                                                 <th>City</th>
  18.                                                 <th>Postal Code</th>
  19.                                         </tr>
  20.                                 </thead>
  21.                                 <tbody>
  22.                         ";
  23.                        
  24.                         while($fetch = $query->fetch_array()){
  25.                                 $output .= "
  26.                                         <tr>
  27.                                                 <td>".$fetch['firstname']." ".$fetch['lastname']."</td>
  28.                                                 <td>".$fetch['city']."</td>
  29.                                                 <td>".$fetch['postal_code']."</td>
  30.                                         </tr>
  31.                                 ";
  32.                         }
  33.                        
  34.                         $output .="
  35.                                 </tbody>
  36.                         </table>
  37.                         ";
  38.                        
  39.                         echo $output;
  40.                 }else{
  41.                         echo "<center><h4>Search Not Found!</h4></center>";
  42.                 }
  43.                        
  44.         }
  45. ?>

Creating The Ajax Funcition

This is where the code that uses ajax script. This code will send ajax request to php server to display a data back to html. To do that just simply copy and write this block of codes inside the text editor, then save it as script.js inside the js folder.
  1. $(document).ready(function(){
  2.         $('#search').on('keyup', function(){
  3.                 if($("#search").val() == ""){
  4.                         $('#result').empty();
  5.                 }else{
  6.                         var search = $("#search").val();
  7.                         $.ajax({
  8.                                 url: 'search.php',
  9.                                 type: 'POST',
  10.                                 data: {search: search},
  11.                                 dataType: 'text',
  12.                                 success: function(data){
  13.                                         $("#result").html(data);
  14.                                 }
  15.                         });
  16.                 }
  17.         });
  18. });
There you have it we successfully created a Simple Live Data Search Using Ajax and PHP. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!!!

Add new comment