无法加载请求的文件:templates / header.php

时间:2015-02-18 11:01:43

标签: php codeigniter view foreach

我正在尝试用于测试(学习)codeigniter的示例代码,但是当我运行我的项目时,我有一些像这样的错误http://localhost/CodeIgniter_test/todos,以便发生以下错误

遇到错误

无法加载请求的文件:templates / header.php

我从这个网址http://www.allshorevirtualstaffing.com/how-to-develop-basic-crud-operations-in-codeigniter/#.VORuXGPWS1E

中获取代码

3 个答案:

答案 0 :(得分:4)

您在header.php文件夹中缺少文件application/views/templates

答案 1 :(得分:0)

检查文件权限。如果你使用ftp覆盖这些文件,这很常见,你可能已经更改了文件权限和/或所有权而不知道。

答案 2 :(得分:-1)

class View extends CI_Controller {
    public function __construct()
    {
    parent::__construct();
    }
    public function myview() {
        $this->load->view('templates/header.php');
        $this->load->view('templates/myview.php');
        $this->load->view('templates/footer.php');
   }

加载您必须编写的视图example.com/index.php/view/myview 在application / views / templates文件夹中的codeigniter中,你必须有以上三个文件header.php,myview.php,footer.php