PHP Simple Search using AJAX/Bootstrap

In this tutorial, I'm going to show you how to create a simple search using ajax/bootstrap. It features a suggestion list from data in our database. Hope this will help you.

Creating our Database

First and most important step in to create our database. 1. Open phpMyAdmin. 2. Click databases, create a database and name it as "ajax_search". 3. After creating a database, click the SQL and paste the below code. See image below for detailed instruction.
  1. CREATE TABLE `user` (
  2.   `userid` INT(11) NOT NULL AUTO_INCREMENT,
  3.   `firstname` VARCHAR(30) NOT NULL,
  4.   `lastname` VARCHAR(30) NOT NULL,
  5. PRIMARY KEY(`userid`)
  6. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
searchv2

Inserting Sample Data into our Database

Next is to insert sample users into the database that we have created. We are going to use this in our search. 1. Click "ajax_search" database that we have created. 2. Click SQL and paste the code below.
  1. INSERT INTO `user` (`firstname`, `lastname`) VALUES
  2. ('neovic', 'devierte'),
  3. ('lee', 'ann'),
  4. ('julyn', 'divinagracia'),
  5. ('jaira', 'jacinto'),
  6. ('tintin', 'demapanag'),
  7. ('dee', 'tolentino'),
  8. ('tintin', 'devierte');

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","","ajax_search");
  5. if (!$conn) {
  6.         die("Connection failed: " . mysqli_connect_error());
  7. }
  8.  
  9. ?>

Creating our Search Form

Next step is to create our search form. Also, take note that the css and scripts that I used in this tutorial are hosted so you might need internet for them to work. We name this as "index.php".
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.         <title>PHP Simple Search using AJAX/Bootstrap</title>
  5.         <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
  6.         <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
  7.         <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  8.         <style>
  9.                 #result{
  10.                         position:absolute;
  11.                         top:45px;
  12.                         left:175px;
  13.                 }
  14.         </style>
  15. </head>
  16. <body>
  17.         <nav class="navbar navbar-default">
  18.     <div class="container-fluid">
  19.                 <div class="navbar-header">
  20.                         <a class="navbar-brand" href="https://www.sourcecodester.com/user/224918/track">nurhodelta_17</a>
  21.                 </div>
  22.                
  23.                 <div class="collapse navbar-collapse navbar-ex1-collapse">
  24.                         <div class="col-sm-3 col-md-3">
  25.                         <form class="navbar-form" role="search" method="POST" action="result.php">
  26.                         <div class="input-group">
  27.                                 <input type="text" class="form-control" placeholder="Search" name="search" id="search">
  28.                                 <div class="input-group-btn">
  29.                                         <button class="btn btn-default" type="submit"><i class="glyphicon glyphicon-search"></i></button>
  30.                                 </div>
  31.                         </div>
  32.                         </form>
  33.                         </div>
  34.                 </div>
  35.     </div>
  36.         </nav>
  37.         <div id="result"></div>
  38. <script type="text/javascript">
  39. $(document).ready(function() {
  40.  
  41.    $("#search").keyup(function() {
  42.                 var name = $('#search').val();
  43.                 if (name == "") {
  44.                         $("#result").html("");
  45.                 }
  46.                 else {
  47.                         $.ajax({
  48.                         type: "POST",
  49.                         url: "search.php",
  50.                         data: {
  51.                                 search: name
  52.                         },
  53.                         success: function(html) {
  54.                                 $("#result").html(html).show();
  55.                         }
  56.                         });
  57.                 }
  58.         });
  59.  });
  60.  
  61. function fill(Value) {
  62.  
  63.         $('#search').val(Value);
  64.         $('#result').hide();
  65.        
  66. }
  67. </script>
  68. </body>
  69. </html>

Creating our Search Code

Next, we create our search code. This code will be the one to fetch data from our database. We name this as "search.php".
  1. <?php
  2.  
  3. include "conn.php";
  4. if (isset($_POST['search'])) {
  5.         $search = $_POST['search'];
  6.        
  7.         $query=mysqli_query($conn,"select * from `user` where firstname like '%$search%' or lastname like '%$search%'");
  8.  
  9.         if(mysqli_num_rows($query)==0){
  10.                 echo '<div class="panel panel-default" style="width:235px;">';
  11.                 ?>
  12.                 <span style="margin-left:13px;">No results found</span>
  13.                 <?php
  14.                 '</div>';
  15.         }
  16.         else{
  17.                 echo '<div class="panel panel-default" style="width:235px;">';
  18.                 while ($row = mysqli_fetch_array($query)) {
  19.                 ?>
  20.                        
  21.                         <span>
  22.                         <a href="user.php?id=<?php echo $row['userid']; ?>" style="text-decoration:none; color:black; margin-left:13px;"><?php echo $row['firstname']; ?> <?php echo $row['lastname']; ?></a>
  23.                         </span><br>
  24.                        
  25.                 <?php
  26.                 }
  27.                 '</div>';
  28.         }
  29. }
  30.  
  31. ?>

Creating our Result Page

Next step is to create our result page for our search form in case the user chooses to enter search text. We name this as "result.php".
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.         <title>PHP Simple Search using AJAX/Bootstrap</title>
  5.         <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
  6.         <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
  7.         <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  8. </head>
  9. <body>
  10.         <nav class="navbar navbar-default">
  11.     <div class="container-fluid">
  12.                 <div class="navbar-header">
  13.                         <a class="navbar-brand" href="https://www.sourcecodester.com/user/224918/track">nurhodelta_17</a>
  14.                 </div>
  15.     </div>
  16.         </nav>
  17.         <div class="row" style="margin-left: 50px;">
  18.                 Search Results: <ul style="list-style-type:none;">
  19.                 <?php
  20.                         include('conn.php');
  21.                         $search=$_POST['search'];
  22.        
  23.                         $query=mysqli_query($conn,"select * from `user` where firstname like '%$search%' or lastname like '%$search%'");
  24.                         if (mysqli_num_rows($query)==0){
  25.                                 echo '<li>No results found!</li>';
  26.                         }
  27.                         else{
  28.                         while($row=mysqli_fetch_array($query)){
  29.                                 ?>     
  30.                                 <li>
  31.                                         <a href="user.php?id=<?php echo $row['userid']; ?>" style="margin-left:13px;"><?php echo $row['firstname']; ?> <?php echo $row['lastname']; ?></a>
  32.                                 </li>
  33.                                 <?php
  34.                         }
  35.                         }
  36.                 ?>
  37.                 </ul>
  38.                 <br>
  39.                 <a href="index.php" class="btn btn-primary"><span class="glyphicon glyphicon-arrow-left"></span> Back</a>
  40.         </div>
  41. </body>
  42. </html>

Creating our Output Page

Lastly, we create our output page. This page will output the results of our searches. We name this as "user.php".
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.         <title>PHP Simple Search using AJAX/Bootstrap</title>
  5.         <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
  6.         <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
  7.         <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
  8. </head>
  9. <body>
  10.         <nav class="navbar navbar-default">
  11.     <div class="container-fluid">
  12.                 <div class="navbar-header">
  13.                         <a class="navbar-brand" href="https://www.sourcecodester.com/user/224918/track">nurhodelta_17</a>
  14.                 </div>
  15.     </div>
  16.         </nav>
  17.         <div class="row" style="margin-left: 50px;">
  18.                 <?php
  19.                         include('conn.php');
  20.                         $id=$_GET['id'];
  21.                         $query=mysqli_query($conn,"select * from `user` where userid='$id'");
  22.                         $row=mysqli_fetch_array($query);
  23.                        
  24.                         echo 'User: <strong>'.$row['firstname'].' '.$row['lastname'].'</strong>';
  25.                 ?>
  26.                 <a href="index.php" class="btn btn-primary"><span class="glyphicon glyphicon-arrow-left"></span> Back</a>
  27.         </div>
  28. </body>
  29. </html>

Add new comment