MOON
Server: Apache
System: Linux server1.studioinfinity.com.br 2.6.32-954.3.5.lve1.4.90.el6.x86_64 #1 SMP Tue Feb 21 12:26:30 UTC 2023 x86_64
User: artinside (517)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/artinside/www/sabbry/vendor/coffeecode/paginator/example/index.php
<title><?= $title = "Paginator Happy and @CoffeeCode"; ?></title>
<?php

require __DIR__ . "/../vendor/autoload.php";

$page = filter_input(INPUT_GET, "page", FILTER_VALIDATE_INT);
$pager = new \CoffeeCode\Paginator\Paginator();
$pager->pager(100, 10, $page);

?>
<link rel="stylesheet" href="style.css"/>

<div class="container">
    <h1><?= $title; ?></h1>
    <p>Paginator is simple and is ready to generate results navigation in your application.</p>
    <pre>SELECT * table LIMIT <?= $pager->limit(); ?> OFFSET <?= $pager->offset(); ?>;</pre>

    <?= $pager->render(null, false); ?>
</div>