Welcome Guest, Not a member yet? Register   Sign In
Form and user data advice needed!!!
#3

[eluser]ede196620[/eluser]
sorry it took so long to replay but here it is

Code:
function __construct()
{
  parent::__construct();
  $this->load->model('info_model','',TRUE);
}

    function getall($page_num=1){


        $results_per_page = 5;
        $this->load->model('info_model');
        $this->load->library('pagination');





        $config['base_url'] = 'http://localhost/Surva/index.php/info_controller/getall';
        $config['total_rows'] = $this->info_model->count_all();
         $config['per_page'] = $results_per_page;
         $config['use_page_numbers'] = TRUE;
        $config['num_links'] = 10;
        $config['uri_segment'] = 3;
        $this->pagination->initialize($config);

        $data['query'] = $this->info_model->get_page($page_num, $results_per_page);
        $data['pagination'] = $this->pagination->create_links();
        $this->load->view('info_view', $data);




        }


Messages In This Thread
Form and user data advice needed!!! - by El Forum - 04-11-2013, 01:12 AM
Form and user data advice needed!!! - by El Forum - 04-11-2013, 03:46 AM
Form and user data advice needed!!! - by El Forum - 04-11-2013, 11:05 PM
Form and user data advice needed!!! - by El Forum - 04-12-2013, 01:23 AM
Form and user data advice needed!!! - by El Forum - 04-12-2013, 01:35 AM
Form and user data advice needed!!! - by El Forum - 04-12-2013, 01:50 AM
Form and user data advice needed!!! - by El Forum - 04-12-2013, 02:14 AM
Form and user data advice needed!!! - by El Forum - 04-12-2013, 02:35 AM
Form and user data advice needed!!! - by El Forum - 04-12-2013, 02:58 AM
Form and user data advice needed!!! - by El Forum - 04-12-2013, 04:05 AM
Form and user data advice needed!!! - by El Forum - 04-12-2013, 07:07 AM
Form and user data advice needed!!! - by El Forum - 04-12-2013, 07:09 AM
Form and user data advice needed!!! - by El Forum - 04-12-2013, 07:22 AM
Form and user data advice needed!!! - by El Forum - 04-12-2013, 07:32 AM
Form and user data advice needed!!! - by El Forum - 04-15-2013, 07:53 AM
Form and user data advice needed!!! - by El Forum - 04-15-2013, 08:31 AM



Theme © iAndrew 2016 - Forum software by © MyBB