I have search bar on my facebox. It will search for the lastName or firstName every time the user will input a character or name in the textbox.
For more clarification here's the screenshot:
and here's the code:
UPDATE
This is the code I found in the web on those 3 days of in-activity
this code made by Malik Naik (I modified some of his code)
addBookRecord.php
<?php
session_start();
$recordType = $_GET['status'];  
?>
<!-- this code made by Malik Naik -->
<script>
function searchResult(string){
    var xmlhttp;
    if(window.XMLHttpRequest){
        xmlhttp = new XMLHttpRequest();
    }else{
        xmlhttp = new ActiveXObject("XMLHTTP");
    }
    xmlhttp.onreadystatechange = function(){
        if(xmlhttp.readyState == 4 && xmlhttp.status == 200){
            document.getElementById("result").innerHTML = xmlhttp.responseText;
        }
    }
    xmlhttp.open("GET", "search.php?search="+string, true);
    xmlhttp.send(null);
}
</script>
<style>
    #result{
        width: 350px; margin: 0 auto; max-height: 150px; overflow: hidden;
    }
</style>
<!DOCTYPE html>
<html lang="en">
<head>
<!--<link rel="stylesheet" type="text/css" href="../css/bootstrap.min.css">-->
<link rel="stylesheet" type="text/css" href="../css/bootstrap-glyphicons.css">
</head>
<span style="color:#B22222"><strong>Add Record</strong></span>
<form action = "" method="post">
 <div style="margin-top: 10px; margin-left: 10px;">
  <strong>Name:</strong>
  <!--<form name="form1" method="post">-->
   <div class="input-group stylish-input-group">
    <input type="text" class="form-control" name="searchStud" placeholder="Search" onkeydown="searchResult(this.value)" autocomplete="off">
    <span class="input-group-addon">
     <span class="glyphicon glyphicon-search"></span>
    </span>
   </div>
    <div id="result"></div>
  <!--</form>-->
  <?php
   if ($recordType=='book'){  
  ?>
    <strong>Item:</strong><br>
    <input type="text" name="addBookItem" value="e-math (K to 12)"> <input type="text" name="searchID" value="<?php echo $_SESSION['addBorrowID'];?>"><br>
    <strong>Description:</strong> <br>
    <input type="text" name="addBookDescription" value="Worktext in Mathematics"><br>
    <strong>Author:</strong> <br>
    <input type="text" name="addBookAuthor" value="Orlando A. Orence & Marilyn O. Mendoza"><br>
    <strong>Publisher:</strong> <br>
    <input type="text" name="addBookPublisher" value="REX Book Store"><br>
    <strong>ISBN:</strong> <br>
    <input type="text" name="addBookISBN" value="9789712361982"><br>
  <?php
   }
   else{
  ?>
    <strong>Item:</strong> <br>
    <input type="text" name="addBookItem" value="e-math (K to 12)"><br>
    <strong>Model:</strong> <br>
    <input type="text" name="addBookAuthor" value="Orlando A. Orence & Marilyn O. Mendoza"><br>
    <strong>Serial:</strong> <br>
    <input type="text" name="addBookPublisher" value="REX Book Store"><br>
  <?php
   }
  ?>
  <br>
 </div>
    <button class="btn btn-success btn-block btn-large" name="addRecordButton" >Save Changes</button>
</form>search.php
<?php
session_start();
include("../db/dbCon.php");
if(isset($_GET['search']) && $_GET['search'] != ''){
    $search=$_GET['search'];
    $qry = $conn->prepare("
                            SELECT e.enrld_id, CONCAT(i.lastName,', ', i.firstName,' ',i.middleName)
                            AS fullName
                            FROM user_info i
                            JOIN enrolled e ON e.userID=i.userID 
                            WHERE i.lastName LIKE '%$search%' OR i.firstName LIKE '%$search%'
                        ");
    $qry->execute();
    $result = $qry->fetchAll(PDO::FETCH_ASSOC); 
    foreach($result as $row){
        if ($row['enrld_id']!=0){
                //$_SESSION['addBorrowID']=(int)$row['enrld_id'];
                $fullName = $row['fullName'];
                echo '<div id="result" onclick="getSearchID("'.$row['enrld_id'].'")">'.$fullName.'</div>';
        }
    }
}
?>
<?php
    function getSearchID($enrldID){
        $_SESSION['addBorrowID'] = $enrldID;
    }
?>
This scenario is just to test if the $_SESSION['addBorrowID'] has a value
if (isset($_POST['addRecordButton'])){
echo '<script type="text/javascript">alert("'.$_SESSION['addBorrowID'].'");</script>';
}
MAIN QUESTION
My problem is I can't store the enrld_id in the searchID textbox whenever I click the result below the search bar... I use the Mouse event but it's not working:
foreach($result as $row){
        if ($row['enrld_id']!=0){
                //$_SESSION['addBorrowID']=(int)$row['enrld_id'];
                $fullName = $row['fullName'];
                echo '<div id="result" onclick="getSearchID("'.$row['enrld_id'].'")">'.$fullName.'</div>';
        }
    }
<?php
function getSearchID($enrldID){
    $_SESSION['addBorrowID'] = $enrldID;
}
?>
but the result is empty. I want to pass the value of $_SESSION['addBorrowID'] to this textbox
------- END -------
this is OPTIONAL to answer
Here is my little question:
How can I prevent an SQL injection using a LIKE query? I know how to use bindParam but I don't know if my theory is right: 
lastName LIKE '%?%' OR firstName LIKE '%?%'");
$qry->bindParam(1, $find);
$qry->bindParam(2, $find);
Is this right?


 
    