i use a pagination.class with this class
net.tutsplus.com/tutorials/php/how- ...
made no modifications on Ultimate Mysql class
and on index.php i do this:
$db->SelectTable("mytable");
$pages = new Paginator;
$pages->items_total = $db->RowCount();
$pages->mid_range = 7;
$pages->paginate();
$db->SelectRows("mytable",null,null,'created', false, $pages->limit);
and on pagination.class line 100
$this->limit = ($_GET['ipp'] == 'All') ? "":" LIMIT $this->low,$this->items_per_page";
remove the "LIMIT"
$this->limit = ($_GET['ipp'] == 'All') ? "":" $this->low,$this->items_per_page";
and works like a charm