Fatal error: Class 'Controller' not found in <local_path>\system\application\controllers\welcome.php
on line 3
<?php
class Welcome extends Controller {
function __construct()
{
parent::Controller();
}
function index()
{
$this->load->view('welcome_message');
}
}
/* End of file welcome.php */
/* Location: ./system/application/controllers/welcome.php */
I am beginner in php frameworks just extracted the CodeIgniter zip file and tried to run welcome.php controller in Aptana studio. ( PHP 5 )