Código php:
Ver originalclass paging
{
public $self;
public $pagenum;
public $perpage;
public $maxpages;
public $page;
function paging($sqlcol, $sqltable, $display_per_page)
{
$this->self = $_SERVER["PHP_SELF"];
{
$idConn = new databaseManager(DB_SERVER, DB_USER, DB_PASSWORD, DB_DATABASE);
}
$idConn->query("SELECT COUNT('$sqlcol') FROM '$sqltable'");
$this->pagenum = $idConn->getSelected();
$this->perpage = $display_per_page;
if (empty($start)): $start = 0; endif;
$this->maxpages = $this->pagenum / $this->perpage;
$this->page = ceil($start / $this->perpage) + 1;
if (isset($_GET["page"])): $this->page = $_GET["page"]; endif; }
function nextlink()
{
if ($this->pagenum < $this->maxpages)
{
$page = $this->pagenum + 1;
return '<a href="'.$this->self.'?page='.$this->page.'" title="Siguiente">Siguiente</a>';
}
else
{
return FALSE;
}
}
function prevlink()
{
if ($this->pagenum > 1)
{
$page = $this->pagenum - 1;
echo '<a href="'.$this->self.'?page='.$this->page.'" title="Anterior">Anterior</a>';
}
else
{
return FALSE;
}
}
}
Claro, esto está todavía en construcción, no encuentro un buen script de paginación así qeu ando intentando el mío =)