SQLite Live Search Using PHP Source Code

In this tutorial we will create a SQLite Live Search using PHP. This code will auto search a data in the table when user enter a keyword in the textbox. The code use jQueryajax to call a php request without refreshing the page into the HTML. To search a data use SELECT query and adding a parameter in the WHERE clause LIKE with keyword between two %. This a free program, you can apply this to your system as your own. We will be using SQLite that provides an interface for accessing the database. It includes class interfaces to the SQL commands. And also it allows you to create SQL functions and aggregate using PHP.

Getting 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 bootstrap that i used for the layout design https://getbootstrap.com/. Installing SQLite Browser We will now then install the SQLite data viewer, here's the link for the DB Browser for SQLite http://sqlitebrowser.org/.

Setting Up SQLite

First, we are going to enable SQLite 3 in our PHP.
  1. Open localhost server folder XAMPP, etc and locate php.ini.
  2. Open php.ini and enable sqlite3 by removing the semicolon in the line. tut1
  3. Save changes and Restart Server.

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 SQLite3('db/db_member') or die("Unable to open database!");
  3. $query="CREATE TABLE IF NOT EXISTS `member`(mem_id INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, firstname TEXT, lastname TEXT, address TEXT)";
  4.  
  5. $conn->exec($query);
  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 you text editor, then save it as index.php.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5. <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6. </head>
  7. <body>
  8. <nav class="navbar navbar-default">
  9. <div class="container-fluid">
  10. <a class="navbar-brand" href="https://sourcecodester.com">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">SQLite Live Search Using PHP Source Code</h3>
  16. <hr style="border-top:1px dotted #ccc;"/>
  17. <div class="col-md-4">
  18. <form method="POST" action="save_member.php">
  19. <div class="form-group">
  20. <label>Firstname</label>
  21. <input type="text" name="firstname" class="form-control" required="required"/>
  22. </div>
  23. <div class="form-group">
  24. <label>Lastname</label>
  25. <input type="text" name="lastname" class="form-control" required="required" />
  26. </div>
  27. <div class="form-group">
  28. <label>Address</label>
  29. <input type="text" name="address" class="form-control" required="required" />
  30. </div>
  31.  
  32. <center><button name="save" class="btn btn-primary"><span class="glyphicon glyphicon-save"></span>Save</button></center>
  33.  
  34. </form>
  35. </div>
  36. <div class="col-md-8">
  37. <div class="form-inline pull-right">
  38. <input type="text" id="search" class="form-control" placeholder="Search here..."/>
  39. </div>
  40. <br /><br />
  41. <table class="table table-bordered">
  42. <thead class="alert-info">
  43. <tr>
  44. <th>Firstname</th>
  45. <th>Lastname</th>
  46. <th>Address</th>
  47. </tr>
  48. </thead>
  49. <tbody id="result"></tbody>
  50. </table>
  51. </div>
  52. </div>
  53. <script src="js/jquery-3.2.1.min.js"></script>
  54. <script src="js/bootstrap.js"></script>
  55. <script src="js/script.js"></script>
  56. </body>
  57. </html>

Creating the SQLite Query

This code contains the SQLite query of the application. This code will store the data inputs to SQLite database. To do this just copy and write these block of codes as shown below inside the text editor, then save it as insert.php.
  1. <?php
  2. require_once'conn.php';
  3. if(ISSET($_POST['save'])){
  4. $firstname=$_POST['firstname'];
  5. $lastname=$_POST['lastname'];
  6. $address=$_POST['address'];
  7.  
  8.  
  9. $query="INSERT INTO `member` (firstname, lastname, address) VALUES('$firstname', '$lastname', '$address')";
  10.  
  11. $conn->exec($query);
  12.  
  13. header("location:index.php");
  14. }
  15. ?>

Creating the Main Function

This code contains the main function of the application. This code will auto search a data in the SQLite database. To do this just copy and write these block of codes as shown below inside the text editor, then save it as shown below. data.php
  1. <?php
  2. require_once'conn.php';
  3.  
  4. $query=$conn->query("SELECT * FROM `member`") or die("Failed to fetch row!");
  5. while($fetch=$query->fetchArray()){
  6. echo"<tr><td>".$fetch['firstname']."</td><td>".$fetch['lastname']."</td><td>".$fetch['address']."</td></tr>";
  7. }
  8. ?>
search.php
  1. <?php
  2. require_once'conn.php';
  3.  
  4. $keyword = $_POST['keyword'];
  5. $query=$conn->query("SELECT * FROM `member` WHERE `firstname` LIKE '%$keyword%' OR `lastname` LIKE '%$keyword%' OR `address` LIKE '%$keyword%'") or die("Failed to fetch row!");
  6. while($fetch=$query->fetchArray()){
  7. echo"<tr><td>".$fetch['firstname']."</td><td>".$fetch['lastname']."</td><td>".$fetch['address']."</td></tr>";
  8. }
  9. ?>
script.js Note: To make the script work make sure you save the file inside the js folder.
  1. $(document).ready(function(){
  2.  
  3. getData();
  4.  
  5. $('#search').on('keyup', function(){
  6. var keyword = $(this).val();
  7. if(keyword === ""){
  8. getData();
  9. }else{
  10. search(keyword);
  11. }
  12. });
  13.  
  14. });
  15.  
  16.  
  17. function getData(){
  18. $.ajax({
  19. url: 'data.php',
  20. type: 'POST',
  21. data: {res: 1},
  22. success: function(data){
  23. $('#result').html(data);
  24. }
  25. });
  26. }
  27.  
  28. function search(searchText){
  29. $.ajax({
  30. url: 'search.php',
  31. type: 'POST',
  32. data: {keyword: searchText},
  33. success: function(data){
  34. $('#result').html(data);
  35. }
  36. });
  37. }
There you have it we successfully created a SQLite Live Search using 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