Welcome Guest, Not a member yet? Register   Sign In
Nettuts CI Day 7 - Pagination Problem
#3

[eluser]domoench[/eluser]
Thanks for the response Insite - I plugged in that line, but it had no effect. My controller now reads as follows:

Code:
<?php

class Site extends CI_Controller
{
    function index()
    {
        $this->load->library('pagination');
        
        $config['base_url'] = base_url() . 'site/index/';
        $config['total_rows'] = $this->db->get('data')->num_rows();
        $config['per_page'] = 10;
        $config['num_links'] = 20;
        $config['uri_segment'] = 3;
        
        $this->pagination->initialize($config);
        
        $data['records'] = $this->db->get('data', $config['per_page'], $this->uri->segment(3));
        $this->load->view('site_view', $data);
    }
}

Any other problems visible?

Thanks.


Messages In This Thread
Nettuts CI Day 7 - Pagination Problem - by El Forum - 04-10-2011, 09:17 AM
Nettuts CI Day 7 - Pagination Problem - by El Forum - 04-10-2011, 10:05 AM
Nettuts CI Day 7 - Pagination Problem - by El Forum - 04-10-2011, 12:36 PM
Nettuts CI Day 7 - Pagination Problem - by El Forum - 04-10-2011, 01:24 PM
Nettuts CI Day 7 - Pagination Problem - by El Forum - 04-10-2011, 01:31 PM
Nettuts CI Day 7 - Pagination Problem - by El Forum - 04-11-2011, 09:56 PM
Nettuts CI Day 7 - Pagination Problem - by El Forum - 04-12-2011, 05:38 AM



Theme © iAndrew 2016 - Forum software by © MyBB