Sean’s Blog
Published in

Sean’s Blog

PHP: Simple Pagination

This is a simple pagination snippet I wrote for a Drupal module I was working on. I’ve “unDruaplized” it and now it’s completely independent.

The function will calculate the number of pages to display based on $total and $shown. In addition, it'll append the corresponding page number to the provided $url.

This function takes 4 params:

100(results) / 10(per page) = 10(pages)

NOTE: All page numbers are incremented by one. This means, the function assumes URL 0 as page 1.

Example Usage:

echo handle_pagination(100, (int)$_GET['p'], 10, '?p=');

HTML Output

The following is an example of the markup our snippet below will generate

Which should produce something like the following:

1 2 3 4 5 ... next › last »

Snippet

--

--

Get the Medium app

A button that says 'Download on the App Store', and if clicked it will lead you to the iOS App store
A button that says 'Get it on, Google Play', and if clicked it will lead you to the Google Play store