Using pagination with query string for a search form which has the method set to get in codeigniter

后端 未结 1 1932
孤街浪徒
孤街浪徒 2020-12-16 19:58

I\'m banging my head on the keyboard trying to figure out a way to use query string with pagination every thing works fine until FIRST page link appears.

<
相关标签:
1条回答
  • 2020-12-16 19:58

    I can't believe this, I spent hours searching the web for a solution ! It was always with me.I should have opened the pagination library and viewed its content before I posted this question.Just one line and problem solved.
    I added the following line in the index method.
    $config['first_url'] = '/index.php/search/index/?q='.$q;

    0 讨论(0)
提交回复
热议问题