私はこのようなURLを持っています
http://localhost/bestbookfinder.com/viewallbooks/books/pgn/grid/6
どこ:
bestbookfinder.com:プロジェクト名
viewallbooks :クラス名
本 :関数
pgn :定数パラメータ
グリッド :ビュータイプ
6 :ページネーションの現在のページ番号
そのため、上記のURLを読み取って、次のコードでCSSクラスを適用しようとしていますが、残念ながら私のコードは機能していません。URLを読み込もうとしたときに間違いを犯していると思います。
この問題を解決するのを手伝ってください
<?php
if ( $this->uri->uri_string() == '/books/pgn/grid' )//i think mistake is here
{
echo "".anchor(base_url().'viewallbooks/books/pgn/grid/'.$this->uri->segment(5),' Grid', array('id' => 'gridactive'))."";
}
?>