CodeIgniter Pagination Page Links Not Working

前端 未结 2 474
孤独总比滥情好
孤独总比滥情好 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 20:54

    CIAPP - application directory tester- controller class

    are you using any function inside tester..??

    if then,

    base_url().'tester/function_name';

    0 讨论(0)
  • 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,
    
    0 讨论(0)
提交回复
热议问题