codeigniter 2.0 Fatal error: Class 'Controller' not found in

前端 未结 5 1774
梦如初夏
梦如初夏 2020-12-14 17:38

i have download the new codeigniter 2.0 and put my controller,model and view files in the new codeigniter 2.0 installation. but i got this error

Fatal error: Class

5条回答
  •  伪装坚强ぢ
    2020-12-14 17:56

    class Student extends CI_Controller {
    
      function Student()   {
        parent::__construct(); 
    
        // load helpers
        $this->load->helper('url');
      }
    }
    

    Including the parent::__construct(); rather than parent::Controller();

提交回复
热议问题