i'have created a pagination in phpmyadmin using tables.But i dont know how to import my webpages into table values, do you know how can i do that?
You created 'pagination in your database'? That makes no sense. Generally, when paginating large responses from MySQL, you paginate from the PHP end just by modifying the MySQL queries... so this is an example of queries per page, displaying 10 results per page: Page 1: SELECT FROM `table` WHERE `column` = 'value' LIMIT 0,10 Page 2: SELECT FROM `table` WHERE `column` = 'value' LIMIT 10,10 Page 3: SELECT FROM `table` WHERE `column` = 'value' LIMIT 20,10