Created
April 4, 2019 08:42
-
-
Save dusta/5c499bc3db4951f407581aee5f7344f8 to your computer and use it in GitHub Desktop.
Paginator example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$page = (!isset($_GET['p']) or is_int($_GET['p']) != true) ? '1' : $_GET['p']; | |
$limit = '50'; | |
$start = ($page - 1) * $limit; | |
// Example implement | |
//$sql = 'SELECT * FROM suppliers order by name ASC LIMIT ' . $start . ', ' . $limit; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment