Pagination in PHP
Pagination in PHP Pagination in PHP Here suppose you have large data in table and when you fetch those data it will look like (Without Pagination) In PHP it is possible to use pagination. (With Pagination) Here With pagination it will look like above picture. Let's Start the Program of Pagination in PHP <?php $con=mysql_connect("localhost","root",""); mysql_select_db("test"); //Database name $nor=5; //Number of record which we want to display at one time if(isset($_GET['id'])) { ...