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

Hi, I'm newbie for codeigniter.

I'm now learning of pagination class, and while trying to practice example in Codeigniter's documentation, I had a problem

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

       $config['base_url'] = 'http://example.com/index.php/test/page/';
       $config['total_rows'] = 200;
       $config['per_page'] = 20;

       
       $this->pagination->initialize($config);
       
       echo $this->pagination->create_links();
This is the exactly same example in the documentation, and I think it doesn't work in php 7.1.

I display pagination like "123>Last>" which should have had 10 links(but three links were shown up).

What mistake did I make? Huh
Reply


Messages In This Thread
Pagination problem - by azaka9541 - 11-11-2018, 01:01 AM
RE: Pagination problem - by enelson - 11-11-2018, 09:44 AM
RE: Pagination problem - by azaka9541 - 11-11-2018, 10:51 PM



Theme © iAndrew 2016 - Forum software by © MyBB