Skip to content

yulwebdev/php-pagination-with-dots

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PHP pagination with dots.

Bootstrap 5.3

alt text
alt text
alt text

Example usage:

require_once "pagination.php";

$total_pages = 9;
$current_page = 1;

if(isset($_GET["page"])) {
  $current_page = $_GET["page"];
}
show_pagination($total_pages, $current_page);

The links are formed considering the query parameters.

Releases

No releases published

Packages

No packages published

Languages