Show limited no. of page links in codeigniter pagination

后端 未结 4 564
难免孤独
难免孤独 2021-01-29 03:24

I want to display a limited no. of page links, say 5 out of 10 links,is there any known or tried and tested method in codeIgniter to achieve this.

so lets say user can r

4条回答
  •  有刺的猬
    2021-01-29 04:06

    When you want to fixed the pagination page number you modify the $num_links:

    $config['total_rows'] =100;
    $config["num_links"] = 5;
    $config['full_tag_open'] = '
      '; $config['full_tag_close'] = '
    '; $config['first_link'] = false; $config['last_link'] = false;

    It shows like this: << 2 3 4 5 6 7 >>

提交回复
热议问题