Skip to content

Instantly share code, notes, and snippets.

@dusta
Created April 4, 2019 08:42
Show Gist options
  • Save dusta/5c499bc3db4951f407581aee5f7344f8 to your computer and use it in GitHub Desktop.
Save dusta/5c499bc3db4951f407581aee5f7344f8 to your computer and use it in GitHub Desktop.
Paginator example
<?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