Выходит ошибка
в уроке codelgniter 2.1 делал все как в видео но выводит ошибку Unable to load the requested file: templates/header.php
скажите пожалуйста в чем проблема
код:
<?php
defined ('BASEPATH') OR exit('no direc script access allowed');
class News extends CI_Controller {
public function __construct () {
parent:: __construct();
}
public function index() {
$data['title'] = "Все новости";
$this->load->view('templates/header.php', $data);
$this->load->view('news/index', $data);
$this->load->view('templates/footer.php');
}
}