Ver Mensaje Individual
  #25 (permalink)  
Antiguo 24/02/2011, 20:32
matiasbmx
 
Fecha de Ingreso: febrero-2011
Mensajes: 124
Antigüedad: 14 años, 1 mes
Puntos: 4
Respuesta: Problema en paginacion

Cita:
Iniciado por Ronruby Ver Mensaje
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
Listo! solucionado...
Solucionado todo.. gracias por tu ayuda desinteresada..
buen dia!