
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | <!DOCTYPE html> <html> <head> <meta charset= "utf-8" > <meta name= "viewport" content= "width=device-width, initial-scale=1.0" > <title>Live Data Search using PHP MySqli and Jquery Ajax</title> <link href= "https://maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel= "stylesheet" id= "bootstrap-css" > <script> $(document).ready( function (){ load_data(); function load_data(query) { $.ajax({ url: "ajaxlivesearch.php" , method: "POST" , data:{query:query}, success: function (data) { $( '#result' ).html(data); } }); } $( '#search_text' ).keyup( function (){ var search = $(this).val(); if (search != '' ){ load_data(search); } else { load_data(); } }); }); </script> </head> <body> <div class = "container search-table" > <p><h2 align= "center" >Live Data Search using PHP MySqli and Jquery Ajax</h2></p> <div class = "search-box" > <div class = "row" > <div class = "col-md-3" > <h5>Search All Fields</h5> </div> <div class = "col-md-9" > <input type= "text" name= "search_text" id= "search_text" class = "form-control" placeholder= "Search all fields e.g. HTML" > </div> </div> </div> <div id= "result" ></div> </div> <style> .search-table{ padding: 10%; margin-top: -6%; } .search-box{ background: #c1c1c1; border: 1px solid #ababab; padding: 3%; } .search-box input:focus{ box-shadow:none; border:2px solid #eeeeee; } .search-list{ background: #fff; border: 1px solid #ababab; border-top: none; } .search-list h3{ background: #eee; padding: 3%;color:#fe6f41; margin-bottom: 0%; } </style> </body> </html> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | //ajaxlivesearch.php <div class = "search-list" > <?php include "dbcon.php" ; $output = '' ; if (isset( $_POST [ "query" ])) { $search = mysqli_real_escape_string( $conn , $_POST [ "query" ]); $query = "SELECT * FROM tblprogramming WHERE title LIKE '%" . $search . "%' OR category LIKE '%" . $search . "%'" ; } else { $query = "SELECT * FROM tblprogramming ORDER BY id" ; } $result = mysqli_query( $conn , $query ); if (mysqli_num_rows( $result ) > 0) { $totalfound = mysqli_num_rows( $result ); $output .= '<h3>' . $totalfound .' Records Found</h3> <table class = "table table-striped custab" > <thead> <tr> <th>Title</th> <th>Category</th> </tr> </thead> <tbody>'; while ( $row = mysqli_fetch_array( $result )) { $output .= ' <tr> <td> '.$row["title"].' </td> <td> '.$row["category"].' </td> </tr>'; } echo $output ; } else { echo 'No Rocord Found' ; } ?> </tbody> </table> </div> |
1 2 3 4 5 6 7 | //dbcon.php <?php $conn = new mysqli( 'localhost' , 'root' , '' , 'testingdb' ); if ( $conn ->connect_error) { die ( 'Error : (' . $conn ->connect_errno . ') ' . $conn ->connect_error); } ?> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | //tablebase table tblprogramming CREATE TABLE `tblprogramming` ( `id` int(11) NOT NULL, `title` varchar(250) NOT NULL, `category` varchar(255) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1; -- -- Dumping data for table `tblprogramming` -- INSERT INTO `tblprogramming` (`id`, `title`, `category`) VALUES (1, 'HTML' , 'Web Development' ), (2, 'PHP' , 'Web Development' ), (3, 'C#' , 'Programming Language' ), (4, 'JavaScript' , 'Web Development' ), (5, 'Bootstrap' , 'Web Design' ), (6, 'Python' , 'Programming Language' ), (7, 'Android' , 'App Development' ), (8, 'Angular JS' , 'Web Delopment' ), (9, 'Java' , 'Programming Language' ), (10, 'Python Django' , 'Web Development' ), (11, 'Codeigniter' , 'Web Development' ), (12, 'Laravel' , 'Web Development' ), (13, 'Wordpress' , 'Web Development' ); |