Search Bar Using PDO

This code will show you how to create Search Bar using PDO. The program can search a row of data from the database server base on the given keyword. It can also allow you to add new entry of data in the table. To learn more about this tutorial, just follow the step below.

Getting Started:

First you have to download & install XAMPP or any local server that run PHP scripts. Here's the link for XAMPP https://www.apachefriends.org/index.html And, 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_pdo_search 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(notepad++, etc..). Then just copy/paste the code below then name it conn.php
  1. <?php
  2.         $conn = new PDO( 'mysql:host=localhost;dbname=db_pdo_search', 'root', '');
  3.         if(!$conn){
  4.                 die("Error: Failed to coonect to database!");
  5.         }
  6. ?>

Creating the Interface

This is where we will create a simple form for our application. To create the forms simply copy and write it into your text editor, then save it as index.php.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.         <head>
  4.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
  5.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  6.         </head>
  7. <body>
  8.         <nav class="navbar navbar-default">
  9.                 <div class="container-fluid">
  10.                         <a href="https://sourcecodester.com" class="navbar-brand">Sourcecodester</a>
  11.                 </div>
  12.         </nav>
  13.         <div class="col-md-3"></div>
  14.         <div class="col-md-6 well">
  15.                 <h3 class="text-primary">Search Bar Using PDO</h3>
  16.                 <hr style="border-top:1px dotted #ccc;" />
  17.                 <div class="col-md-8">
  18.                         <form method="POST" action="">
  19.                                 <div class="form-inline">
  20.                                         <input type="text" class="form-control" name="keyword" placeholder="Search here..." required="required"/>
  21.                                         <button class="btn btn-success" name="search">Search</button>
  22.                                 </div>
  23.                         </form>
  24.                         <br /><br />
  25.                         <?php include'search.php'?>
  26.                 </div>
  27.                 <div class="col-md-4">
  28.                         <form method="POST" action="insert.php">
  29.                                 <div class="form-group">
  30.                                         <label>Firstname</label>
  31.                                         <input type="text" name="firstname" class="form-control" required="required"/>
  32.                                 </div>
  33.                                 <div class="form-group">
  34.                                         <label>Lastname</label>
  35.                                         <input type="text" name="lastname" class="form-control" required="required" />
  36.                                 </div>
  37.                                 <div class="form-group">
  38.                                         <label>Address</label>
  39.                                         <input type="text" name="address" class="form-control" required="required"/>
  40.                                 </div>
  41.                                 <center><button name="save" class="btn btn-primary">Save</button></center>
  42.                         </form>
  43.                 </div>
  44.         </div>
  45. </body>
  46. </html>

Creating Save Query

This code contains the save query of the application. The code will store the data inputs to the database server. To make this just copy and write these block of codes inside the text editor, then save it as insert.php
  1. <?php
  2.         require_once 'conn.php';
  3.  
  4.         if(ISSET($_POST['save'])){
  5.  
  6.                 $firstname = $_POST['firstname'];
  7.                 $lastname = $_POST['lastname'];
  8.                 $address = $_POST['address'];
  9.  
  10.  
  11.                 try{
  12.                         $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
  13.                         $sql = "INSERT INTO `member`(firstname, lastname, address)  VALUES ('$firstname', '$lastname', '$address')";
  14.                         $conn->exec($sql);
  15.                 }catch(PDOException $e){
  16.                         echo $e->getMessage();
  17.                 }
  18.  
  19.                 $conn = null;
  20.  
  21.                 header("location: index.php");
  22.  
  23.         }
  24. ?>

Creating the Main Function

This code contains the main function of the application. The code will display a data after you submit the keyword. To make this just copy and write these block of codes inside the text editor, then save it as search.php
  1. <?php
  2.         require 'conn.php';
  3.         if(ISSET($_POST['search'])){
  4. ?>
  5.         <table class="table table-bordered">
  6.                 <thead class="alert-info">
  7.                         <tr>
  8.                                 <th>Firstname</th>
  9.                                 <th>Lastname</th>
  10.                                 <th>Address</th>
  11.                         </tr>
  12.                 </thead>
  13.                 <tbody>
  14.                         <?php
  15.                                 $keyword = $_POST['keyword'];
  16.                                 $query = $conn->prepare("SELECT * FROM `member` WHERE `firstname` LIKE '%$keyword%' or `lastname` LIKE '%$keyword%' or `address` LIKE '%$keyword%'");
  17.                                 $query->execute();
  18.                                 while($row = $query->fetch()){
  19.                         ?>
  20.                         <tr>
  21.                                 <td><?php echo $row['firstname']?></td>
  22.                                 <td><?php echo $row['lastname']?></td>
  23.                                 <td><?php echo $row['address']?></td>
  24.                         </tr>
  25.                        
  26.                        
  27.                         <?php
  28.                                 }
  29.                         ?>
  30.                 </tbody>
  31.         </table>
  32. <?php          
  33.         }else{
  34. ?>
  35.         <table class="table table-bordered">
  36.                 <thead class="alert-info">
  37.                         <tr>
  38.                                 <th>Firstname</th>
  39.                                 <th>Lastname</th>
  40.                                 <th>Address</th>
  41.                         </tr>
  42.                 </thead>
  43.                 <tbody>
  44.                         <?php
  45.                                 $query = $conn->prepare("SELECT * FROM `member`");
  46.                                 $query->execute();
  47.                                 while($row = $query->fetch()){
  48.                         ?>
  49.                         <tr>
  50.                                 <td><?php echo $row['firstname']?></td>
  51.                                 <td><?php echo $row['lastname']?></td>
  52.                                 <td><?php echo $row['address']?></td>
  53.                         </tr>
  54.                        
  55.                        
  56.                         <?php
  57.                                 }
  58.                         ?>
  59.                 </tbody>
  60.         </table>
  61. <?php
  62.         }
  63. ?>
There you have it we successfully created Search Bar using PDO. 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