Código PHP:
Ver originalCantidad
<?php echo $this->Paginator->counter(array('format' => '%count%')); ?>
Luego yo suelo mostrar estos resultados en tablas, al th se le puede poner para que los ordene
Para recorrerlo 1 a 1, con un foreach
Código PHP:
Ver originalforeach($userPaginate as $data){
echo '<tr>';
echo '<td>';
echo $data['User']['id'];
echo '</td>';
echo '</tr>';
}
y esto al final de la vista
Código PHP:
Ver original<div id="footer">
<?php
$actual = $this->Paginator->counter(array('format' => '%page%')); $total = $this->Paginator->counter(array('format' => '%pages%')); for ($i=1;$i<=$total;$i++) {
if ($i==$actual) {
echo ' Página '.$i.' ';
} else {
echo $this->Paginator->link(' ['.$i.'] ', array('page' => $i)); }
}
echo $this->Paginator->counter(array('format' => ' Total de %count%, comenzando en el registro %start%, terminando en el %end%')) ?> </div>