How to make search bar which search value from database example
Like Above search. Step 1. Make HTML file as follow. <html> <head> <title>Ajax Search Box using PHP and MySQL</title> <!-- script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <!--script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script --> <script src="typeahead.min.js"></script> <script> $(document).ready(function(){ $('input.typeahead').typeahead({ name: 'typeahead', remote: 'search.php?query=%QUERY', // limit : 10 }); /*var search = new Bloodhound({ ...