Posts

Showing posts from March, 2013

Search Data With Pagination In PHP

Image
Many of my readers requested me to create a data search with pagination function so the people search for the particular data with paginated thing i added some php code and connected with mysql database to display out the content with pagination and search order with top keyword match i also provided a free source code package to download the "Search Data With Pagination In PHP" script and you can view the demo here note you can limit the data display as your choice and please edit the search.php for table name and database connecton if you have any queries please comment below i am glad to help you                          Demo                  Download First create a table  CREATE TABLE search ( id  INT  PRIMARY KEY   AUTO_INCREMENT , title  VARCHAR(30)  UNIQU E, description  VARCHAR(30) ); Edit the search.php for database connection <?php $mysql_hostname = " hostname "; $mysql_user = " username ";