PHPjabbers - tools for webmasters Stay in touch
HOME
ORDER
PHP TUTORIALS
PHP FORUM
ABOUT US
CONTACT US
Our products

PHP / MySQL select data and split on pages

This tutorial is going to show you how to SELECT data from a MySQL database, split it on multiple pages and display it using page numbers.

We have MySQL table called “students” holding 90 records with the following fields:
Name – varchar(250)
PhoneNumber – varchar(250)
Instead of doing a single SELECT query and display all the 90 records on a single page we can have 5 pages each containing maximum 20 records. To do this we will need to use the LIMIT clause for SELECT command so we can limit the query to show only 20 records. The LIMIT clause also allows you to specify which record to start from. For example this query

$sql = “SELECT * FROM students ORDER BY name ASC LIMIT 0, 20;

returns 20 records sorted by name starting from the first record. This next query

$sql = “SELECT * FROM students ORDER BY name ASC LIMIT 50, 20;

shows 20 records sorted again by name but this time it will start from the 50th record.
So basically in this clause (LIMIT start, count) ‘start’ specify the starting record and ‘count’ specifies how many records to show.

Next thing to do is to make a PHP file called pagination.php which will show the first 20 records from our table. The code below selects and then prints the data in a table.

<?php 
if (isset($_GET[“page”])) { $page  = $_GET[“page”]; } else { $page=1; }; 
$start_from = ($page-1) * 20; 
$sql = “SELECT * FROM students ORDER BY name ASC LIMIT $start_from, 20; 
$rs_result = mysql_query ($sql, $connection); 
?> 
<table>
<tr><td>Name</td><td>Phone</td></tr>
<?php 
while ($row = mysql_fetch_assoc($rs_result)) { 
?> 
            <tr>
            <td><? echo $row[“Name”]; ?></td>
            <td><? echo $row[“PhoneNumber”]; ?></td>
            </tr>
<?php 
}; 
?> 
</table>

Now, when you open pagination.php in your web browser you will see table showing the first 20 records from your ‘students’ table.

The first 2 lines of the above code

if (isset($_GET[“page”])) { $page  = $_GET[“page”]; } else { $page=1; }; 
$start_from = ($page-1) * 20;

are used to create a $start_from variable depending on the page that we want to view. Later you will see that we will pass a “page” value using the URL (e.g. pagination.php?page=2) to go to different pages. Next we need to find out the total amount of records in our table and the number of pages that we will need. To do this we run another query using COUNT() function.

$sql = “SELECT COUNT(Name) FROM students”; 
$rs_result = mysql_query($sql,$connection); 
$row = mysql_fetch_row($rs_result); 
$total_records = $row[0];

The $total_records is now equal to the number of records that we have in our database, in our case 90. We have 20 records per page so the total number of pages that will be needed is 5 (4 pages with 20 records and last page will have 10 records).

Calculating the amount of pages needed using PHP can be done using ceil() function.

$total_pages = ceil($total_records / 20);
We divide the total number of records by records per page and then the ceil() function will round up the result. Now we have 2 new variables - $total_records equal to 90 and $total_pages equal to 5.

To print page numbers and associate URLs to each number we will use for() cycle.

<?php 
for ($i=1; $i<=$total_pages; $i++) { 
	echo<a href=’pagination.php?page=.$i.”’>.$i.</a>; 
}; 
?>

Above code will print numbers from 1 to 5 and for each number will create different link.
pagination.php?page=1
pagination.php?page=2
pagination.php?page=3
pagination.php?page=4
pagination.php?page=5
as you can see each link passes different page value which is used in the SELECT query above.

At the end you should have a file like this (remember to add the MySQL connection string):

<?php 
if (isset($_GET[“page”])) { $page  = $_GET[“page”]; } else { $page=1; }; 
$start_from = ($page-1) * 20; 
$sql = “SELECT * FROM students ORDER BY name ASC LIMIT $start_from, 20; 
$rs_result = mysql_query ($sql,$connection); 
?> 
<table>
<tr><td>Name</td><td>Phone</td></tr>
<?php 
while ($row = mysql_fetch_assoc($rs_result)) { 
?> 
            <tr>
            <td><? echo $row[“Name”]; ?></td>
            <td><? echo $row[“PhoneNumber”]; ?></td>
            </tr>
<?php 
}; 
?> 
</table>
<?php 
$sql = “SELECT COUNT(Name) FROM students”; 
$rs_result = mysql_query($sql,$connection); 
$row = mysql_fetch_row($rs_result); 
$total_records = $row[0]; 
$total_pages = ceil($total_records / 20); 
 
for ($i=1; $i<=$total_pages; $i++) { 
            echo<a href=’pagination.php?page=.$i.”’>.$i.</a>; 
}; 
?>

This pagination.php file will print a table with maximum 20 records per page and at the bottom 5 page numbers each pointing to a page showing different 20 records.

Do not forget that for a small fee I can add pagination to all your PHP files. Let me know if you need help with this and I will give you a quote.

COMMENTS
Joe

Hi. Thank you very much for this article; the explanation is good; and I tryed to use that I have a good result but not totally successfull as I want it; because I have the multiple pages showing at the bottttom of my page with the number of pages calculated very well and the link of each page is also there but when I click on the page 2 for exemple is not showing me the dedicated page; but the address in the navigation bar is changing correctly... eg: http://www.hostname.com/subhost/index.php?page=2... but the same page is still there the records are not changing.

Please help.

Thanks
Swapan Khan

All are Ok. But when I select the input values from multiple input boxes, the code does not work. Actually 1st page do not have problem. But in 2nd and other pages it does not work. I think the 'href' link did not find the input values. How to store the input values for those pages.

Please help me.
Thanks
Swapan Khan

All are Ok. But when I select the input values from multiple input boxes, the code does not work. Actually 1st page do not have problem. But in 2nd and other pages it does not work. I think the 'href' link did not find the input values. How to store the input values for those pages.

Please help me.
Thanks
Tom

have used different variable names in my code so if you're wondering what the hell $del is in my previous post? Then its the same as $page . so just typ ($page+1) instead of ($del+1) in the code and it will work ;)

Thanks
Tom

If you want to display the page navigation a little smarter for more than 5 pages I have used the following code instead of the last 3 lines "for($i=1; ...":

$pagelink='<table cellpadding="0" cellspacing="0" align="center"><tr><td align="center">';
if($page>1) $pagelink .='<a href="index.php?site=results&page=1">first</a> ';
if($page>1) $pagelink .='<a href="index.php?site=results&page='.($page-1).'">prev</a> ';
$pagelink .='page '.$page.' ';
if($page<$total_pages) $pagelink .='<a href="index.php?site=results&page='.($del+1).'">next</a> ';
if($page<$total_pages) $pagelink .='<a href="index.php?site=results&page='.$total_pages.'">last</a>';
$pagelink .='</td></tr>';
$pagelink .='<tr><td align="center">Total '.$total_pages.' pages.</td></tr>';
$pagelink .='</table>';
echo $pagelink;
prabhu .A

Thank u for this code,This site is really good.
Kevin

Thank you for the code. Really helpful !!
However, I have the same question as Farhang Baghban has. How do you handle more than 5 pages ? For example, 50 pages.
Thank you
Farhang Baghban

I appreciate you ,that is very helpfull code and description. It works, but could you tell me if there are too many pages and records , how navigation bar will be shown numbers , I mean I need to have something like this 1,2,...,45,46 or more than 45 pages.A breif of numbers string.Thank you for your help.
zied

saravanan

phpmysql, datadase value is count to display the front page on php.
 
POST A COMMENT
Your name:
Your email: (email address will not be posted on the website)
Comment:
Verification code:
type characters on the image in the text box