https://github.com/hygsani/pagination
simple pagination class
https://github.com/hygsani/pagination
Last synced: about 1 month ago
JSON representation
simple pagination class
- Host: GitHub
- URL: https://github.com/hygsani/pagination
- Owner: hygsani
- Created: 2017-07-17T03:49:10.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-17T05:36:22.000Z (almost 8 years ago)
- Last Synced: 2025-01-30T09:41:50.946Z (3 months ago)
- Language: PHP
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# simple pagination class for array
example of use:
require_once 'PaginationClass.php';
$pagination = new PaginationClass;
$dataOfArrays = array(
'yellow', 'green', 'brown', 'black', 'white'
);echo $pagination->renderPagination($dataOfArrays, count($dataOfArrays); $_GET['p']);