|
SCREAM: Error suppression ignored for
( ! ) Fatal error: Class 'MY_Controller' not found in E:\study\the internet technology\sql\wamp\www\mydesign\application\controllers\index.php on line
我的librarry中是有MY_Controller.php的<?php
class MY_Controller extends CI_Controller{
function __construct(){
parent::__construct();
}
}
?>
<?php
class Index extends MY_Controller{
function __construct(){
parent::__construct();
}
function index(){
$this->load->view('index');
}
}
?>
|
|