bootstrap 3 pagination with codeigniter

前端 未结 5 997
不知归路
不知归路 2020-12-13 04:41

I cant integrate the bootstrap 3 in my pagination, I am using codeigniter in my system, here is my code so far

$config[\'base_url\'] = base_url().\"/merchant         


        
5条回答
  •  旧时难觅i
    2020-12-13 05:27

    Your these tags were creating problem, Replace them like below

    Replace this

    $config['full_tag_open'] = '';
    

    With them

    $config['full_tag_open'] = "
      "; $config['full_tag_close'] = '
    ';

提交回复
热议问题