Skip to main content

Posts

Showing posts with the label PHP

Create Live Search and Pagination in PHP with JQuery Datatable Plugin

Hi Guys today I am giving this tutorial for client side searching in a PHP with jQuery Datatable Plugin this is a very plain and smooth code so you can use it. you can use this code your website and projects where you want to use rapid searching you can use this code it is 5 line of code to create a plain and rapid searching so check it in below. First of all you should add .CSS file and .JS file and Jquery file in your php file. CDN CSS file ........................ http://cdn.datatables.net/1.10.12/css/jquery.dataTables.min.css CDN Jquery file ........................ https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js CDN JS file ........................ http://cdn.datatables.net/1.10.12/js/jquery.dataTables.min.js Example here : <?php $obj=new mysqli("localhost","root","","database_name"); ?> <html> <head> <title>Demo Live searc...