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

[eluser]hamzakhan[/eluser]
here is my code
Code:
$this->load->library('pagination');
        $config['base_url'] = base_url() . 'admin/geographic/country/index/';
        $config['total_rows'] = $this->db->count_all('cs_countries');
        $config['per_page'] = 30;        
        $this->pagination->initialize($config);
i have total of 300 records but
pagging is show 1,2,3 page with 30 records
and dont no where is other records...

plz help me
#2

[eluser]vitoco[/eluser]
try to print the value of the total_rows, cause the config it's the same as the manual.
Code:
// TOTAL ROWS
        $total_rows = $this->db->count_all('cs_countries');
        echo '<br>[['.$total_rows.']]<br>';
        //
        $this->load->library('pagination');
        $config['base_url'] = base_url() . 'admin/geographic/country/index/';
        $config['total_rows'] = $total_rows ;
        $config['per_page'] = 30;        
        $this->pagination->initialize($config);

Saludos




Theme © iAndrew 2016 - Forum software by © MyBB