Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hygsani/pagination
simple pagination class
https://github.com/hygsani/pagination
Last synced: 21 days ago
JSON representation
simple pagination class
- Host: GitHub
- URL: https://github.com/hygsani/pagination
- Owner: hygsani
- Created: 2017-07-17T03:49:10.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-07-17T05:36:22.000Z (over 7 years ago)
- Last Synced: 2023-10-21T13:32:50.444Z (about 1 year 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']);