Welcome Guest, Not a member yet? Register   Sign In
problem with pagination
#1

[eluser]codecombustor[/eluser]
for some reason the pagination isn't working when i click next



$this->load->library('pagination');

$c_paginate['base_url'] = site_url('record/index');
$c_paginate['per_page'] = '6';
$config['uri_segment'] = '3';

$query = $this->db->get_where('table', array('fieldname' => $field));

if ($query->num_rows() > 0) {
$i=0;
foreach ($query->result() as $row) {
$this->data['rec'][$i] =$row->field2;
$this->data['rec'][$i] = $row->field3;
$i++;
}




Messages In This Thread
problem with pagination - by El Forum - 06-01-2013, 02:30 AM
problem with pagination - by El Forum - 06-01-2013, 02:58 AM



Theme © iAndrew 2016 - Forum software by © MyBB