He conseguido este controlador:La llamada al método definido CI_Controller :: Controlador()
class Start extends CI_Controller{
var $base;
var $css;
function Start()
{
parent::Controller(); //error here.
$this->base = $this->config->item('base_url'); //error here
$this->css = $this->config->item('css');
}
function hello($name)
{
$data['css'] = $this->css;
$data['base'] = $this->base;
$data['mytitle'] = 'Welcome to this site';
$data['mytext'] = "Hello, $name, now we're getting dynamic!";
$this->load->view('testView', $data);
}
}
me dice en esta línea:
parent :: Controlador(); // error aquí.
Call to undefined method CI_Controller::Controller()
Si quito que line..I sale un error para la siguiente línea que dice ..
Call to a member function item() on a non-object
¿cómo puedo evitar este tipo de errores de forma sucediendo?
Gracias ... funciona ahora – BlackFire27