Ver Mensaje Individual
  #4 (permalink)  
Antiguo 23/07/2011, 10:27
Avatar de andresdzphp
andresdzphp
Colaborador
 
Fecha de Ingreso: julio-2011
Ubicación: $this->Colombia;
Mensajes: 2.749
Antigüedad: 12 años, 9 meses
Puntos: 793
Respuesta: paginador no funciona [error]

La función int() no existe en vez de:

$page = empty($_GET['page']) ? 0 : int($_GET['page']);

colocas

$page = empty($_GET['page']) ? 0 : (int) $_GET['page'];

creo que es lo que quieres hacer