CodeIgniter 2.1.3 をダウンロードして、header_controller 経由で css をインポートしようとしています。
私はSOFを試しました:CodeIgniter - CSS の読み込み、CI_Help_pageおよびcodeigniter CSS の問題 ( SitePoint フォーム スレッド)。私は完全に混乱していて、簡単な答えが見つかりません。CodeIgniter バージョン 2.1.3 で CSS と JS をインポートする方法について、ワンステップの回答がある人はいますか
私は持っている :register.php
<?php
class register extends CI_Controller {
public function index()
{
//Get header
$this->load->view('header');
//Any other class
$this->load->view('register');
}
}
よりもheader.php
<?php
?>
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=UTF-8">
<link rel="stylesheet" href="<?php echo base_url();?>css/bootstrap.css" type="text/css" media="screen"/>
<title>DMP</title>
</head>
<body>
ここに私のプロジェクト フォルダーがあります。
ありがとう。