我创建了一个名为test.php的视图,现在我想运行此视图,但我不知道CodeIgniter以及如何运行此视图。我是CodeIgniter的新手。
以下是我的test.php代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>First codeigniter prog</title>
</head>
<body>
<h1>Testing page</h1>
</body>
</html>
答案 0 :(得分:0)
CodeIgniter的user guide非常有用,views和controllers页面特别相关。
假设您的视图文件保存在application/views/
中,您应该将视图加载到控制器中,如下所示:
$this->load->view('test');
CodeIgniter中的默认控制器是欢迎(在application/controllers/
中)。
您可以将此行添加到index()
功能:
class Welcome extends CI_Controller {
function index()
{
$this->load->view('test');
}
}
然后在浏览器中查看您的视图:
yoururl.com/index.php/welcome/