|
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
class Blog extends CI_Controller{
function Blog()
{
parent::Controller();
$this->load->scaffolding('entries');
}
function index()
{
$data['title']="My Blog Title";
$data['heading']="My Blog Heading";
$data['todo']=array('clean house','eat lunch','call mom');
$this->load->view('blog_view',$data);
}
}
/* End of file welcome.php */
/* Location: ./application/controllers/welcome.php */
?>
我下的是2.0.1版本。
运行提示:
Fatal error: Call to undefined method CI_Controller::controller() in G:\AppServ\www\codeigniter\application\controllers\blog.php on line 6
不知是何故?望高手指导指导。 |
|