CodeIgniter Pagination Page Links Not Working

前端 未结 2 502
孤独总比滥情好
孤独总比滥情好 2021-01-23 20:50

I am using the pagination class in my codeigniter application. The pagination links show up fine, ie, I suppose the right number of links eg. 1 2 3 4 5 >, and the page loads up

2条回答
  •  青春惊慌失措
    2021-01-23 21:08

    You are going to want to set the "use_page_numbers" value to TRUE in your pagination configuration.

    $config['use_page_numbers'] = TRUE,
    

提交回复
热议问题