ademas e modificado esto $config['base_url'] = 'http://localhost/ci/'.
Y he seguido este tutorial http://digitta.com/2009/01/empezando-con-codeigniter.html para probar el correcto funcionamiento pero me sale el siguiente error :
( ! ) Fatal error: Class 'Controller' not found in C:\wamp\www\ci\application\controllers\helloworld. php on line 2
Call Stack
# Time Memory Function Location
1 0.0015 385384 {main}( ) ..\index.php:0
2 0.0041 453816 require_once( 'C:\wamp\www\ci\system\core\CodeIgniter.php' ) ..\index.php:201
3 0.0320 1336616 include( 'C:\wamp\www\ci\application\controllers\helloworld .php' ) ..\CodeIgniter.php:248
el codigo del archivo helloword.php
es
Código:
<?php class Helloworld extends Controller{ function index() { $this->load->model('helloworld_model'); $data['result'] = $this->helloworld_model->getData(); $data['page_title'] = "CI Hello World App!"; $this->load->view('helloworld_view',$data); } } ?>
es decir la linea que falla es class Helloworld extends Controller
me podrian decir como soluciono este problema