Error Class Controller not found in CodeIgniter
问题 Hello, I am getting Controller not found error in CodeIgniter. This is my Controller code <?php class HelloWorld extends Controller { function HelloWorld() { parent::Controller(); } function index() { $this->load->view('index_view'); } function hello() { $this->load->view('hello_view'); } } ?> This is the view code: Hello, Nice to see you! I have this error when it executes: Fatal error: Class 'Controller' not found in D:\wamp\www\CodeIgniter_2.0.2\application\controllers\helloworld.php on