AngularJS Search with PHP/MySQLi

Getting Started

I've used CDN for Bootstrap and Angular JS in this tutorial so you need internet connection for them to work.

Creating our Database

First, we're gonna create our database and insert sample data to be used in this tutorial. 1. Open phpMyAdmin. 2. Click databases, create a database and name it as angular. 3. After creating a database, click the SQL and paste the below codes. See image below for detailed instruction.
  1. CREATE TABLE `members` (
  2.   `memid` int(11) NOT NULL AUTO_INCREMENT,
  3.   `firstname` varchar(30) NOT NULL,
  4.   `lastname` varchar(30) NOT NULL,
  5.   `address` text NOT NULL,
  6. PRIMARY KEY(`memid`)
  1. INSERT INTO `members` (`memid`, `firstname`, `lastname`, `address`) VALUES
  2. (1, 'Neovic', 'Devierte', 'Silay City'),
  3. (2, 'Julyn', 'Divinagracia', 'E.B. Magalona'),
  4. (3, 'Gemalyn', 'Cepe', 'Bohol')
database sql

index.php

Next, we create our index that contains our table that we are going to search and our search input.
  1. <!DOCTYPE html>
  2. <html >
  3.         <title>AngularJS Search with PHP/MySQLi</title>
  4.         <meta charset="utf-8">
  5.         <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
  6.         <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.4.8/angular.min.js"></script>  
  7. </head>
  8. <body ng-app="app" ng-controller="search" ng-init="fetch()">
  9. <div class="container">
  10.         <h1 class="page-header text-center">AngularJS Search with PHP/MySQLi</h1>
  11.         <div class="row">
  12.                 <div class="col-md-8 col-md-offset-2">
  13.                         <div class="row">
  14.                                 <div class="col-md-4 col-md-offset-8">
  15.                                         <input type="text" class="form-control" ng-keyup="search()" ng-model="keyword">
  16.                                 </div>
  17.                         </div>
  18.                         <table class="table table-bordered table-striped" style="margin-top:10px;">
  19.                                 <thead>
  20.                                         <th>Firstname</th>
  21.                                         <th>Lastname</th>
  22.                                         <th>Address</th>
  23.                                 </thead>
  24.                                 <tbody>
  25.                                         <tr ng-repeat="member in members">
  26.                                                 <td>{{ member.firstname }}</td>
  27.                                                 <td>{{ member.lastname }}</td>
  28.                                                 <td>{{ member.address }}</td>
  29.                                         </tr>
  30.                                         <tr ng-show="fail">
  31.                                                 <td colspan="3" class="text-center">Member not Found</td>
  32.                                         </tr>
  33.                                 </tbody>
  34.                         </table>
  35.                 </div>
  36.         </div>
  37. </div>
  38. <script src="angular.js"></script>
  39. </body>
  40. </html>

angular.js

This contains our angular js code which contains our fetch and search function.
  1. var app = angular.module('app', []);
  2. app.controller('search', function($scope, $http){
  3.         $scope.fetch = function(){
  4.                 $http.get('fetch.php')
  5.                 .success(function(data){
  6.                         $scope.members = data;
  7.                 });
  8.  
  9.         }
  10.  
  11.         $scope.search = function(){
  12.                 $http.post(
  13.             "search.php", {
  14.                 'keyword': $scope.keyword,
  15.             }
  16.         ).success(function(data) {
  17.                 $scope.members = data;
  18.                 if(data==''){
  19.                         $scope.fail = true;    
  20.                 }
  21.                 else{
  22.                         $scope.fail = false;   
  23.                 }
  24.         });
  25.         }      
  26. });

fetch.php

This is our PHP code in fetching data from our database.
  1. <?php
  2.         $conn = new mysqli('localhost', 'root', '', 'angular');
  3.         $output = array();
  4.         $sql = "SELECT * FROM members";
  5.         $query=$conn->query($sql);
  6.         while($row=$query->fetch_array()){
  7.                 $output[] = $row;
  8.         }
  9.  
  10.         echo json_encode($output);
  11. ?>

search.php

Lastly, this is our PHP code for our search.
  1. <?php
  2.         $conn = new mysqli('localhost', 'root', '', 'angular');
  3.  
  4.         $data = json_decode(file_get_contents("php://input"));
  5.         $output = array();
  6.  
  7.         $sql = "SELECT * FROM members WHERE firstname LIKE '%$data->keyword%' OR lastname LIKE '%$data->keyword%' OR address LIKE '%$data->keyword%'";
  8.         $query=$conn->query($sql);
  9.         while($row=$query->fetch_array()){
  10.                 $output[] = $row;
  11.         }
  12.  
  13.         echo json_encode($output);
  14. ?>
That ends this tutorial. Happy Coding :)

Add new comment