Ver Mensaje Individual
  #24 (permalink)  
Antiguo 24/02/2011, 13:24
Avatar de Ronruby
Ronruby
 
Fecha de Ingreso: julio-2008
Ubicación: 18°30'N, 69°59'W
Mensajes: 4.879
Antigüedad: 16 años, 8 meses
Puntos: 416
Respuesta: Problema en paginacion

Saca el
Código PHP:
$links $paging->fetchNavegacion(); 

echo 
$links
Del bucle while ... Ahora mismo debes tener algo asi:
Código PHP:
while($row fetchResultado()) {
//Codigo blah blah
$links $paging->fetchNavegacion(); 

echo 
$links;

Cuando deberia ser:
Código PHP:
while($row fetchResultado()) {
//Codigo blah blah
//fin while
$links $paging->fetchNavegacion(); 
echo 
$links