[eluser]InsiteFX[/eluser]
You did not show your view file, but in your view file you will need to use a foreach loop to loop through the returned result set!
This is why your getting the error!
Code:
function index()
{
// this is wrong!
$this->load->model('hello');
// should be
$this->load->model('hello_model');
$data['result'] = $this->hello_model->getData();
$this->load->view('hello', $data);
}
}
InsiteFX