我是 CodeIgnitor 的新手。在控制器文件夹中,我创建了一个名为的文件,并在视图中caller.php
创建了一个文件。home.php
在视图中,我还创建了一个名为css
并style.css
在该文件夹中创建的css
文件夹。在视图中我有一些图片。这些图片也是设计的一部分。现在我想使用style.css
和图片。但我不能。
在 caller.php 我有:
class caller extends CI_Controller
{
function index()
{
$this->load->view('home');
// What do I have to write here to load css?
}
}
在 home.php 我有:
<html>
<head>
***------what i have to write here to load css--------***
</head>
<body>
<div id="outer">
...
</div>
</body>
</html>
如果需要其他配置,请提及。