Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/04/2015, 23:56
Avatar de jamie_88
jamie_88
 
Fecha de Ingreso: abril-2011
Ubicación: Lima
Mensajes: 161
Antigüedad: 13 años
Puntos: 28
Respuesta: Problemas paginador

estas pasando como offset siempre el mismo número, osea, $config['uri_segment']. Podrías probar modificando simplemente tu controlador de la siguiente manera:

Código PHP:
public function index($off 0){
$offset = (int)$off;
...
$datos['alumnos'] = $this->alumno_model->get_alumnos($config['per_page'], $offset);
..