Welcome Guest, Not a member yet? Register   Sign In
Call to a member function userdata() on a non-object
#10

[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


Messages In This Thread
Call to a member function userdata() on a non-object - by El Forum - 05-09-2011, 02:46 PM
Call to a member function userdata() on a non-object - by El Forum - 05-09-2011, 03:34 PM
Call to a member function userdata() on a non-object - by El Forum - 05-11-2011, 03:58 AM
Call to a member function userdata() on a non-object - by El Forum - 05-11-2011, 04:03 AM
Call to a member function userdata() on a non-object - by El Forum - 05-11-2011, 04:11 AM
Call to a member function userdata() on a non-object - by El Forum - 05-11-2011, 07:29 AM
Call to a member function userdata() on a non-object - by El Forum - 05-11-2011, 07:47 AM
Call to a member function userdata() on a non-object - by El Forum - 05-11-2011, 08:10 AM
Call to a member function userdata() on a non-object - by El Forum - 06-07-2011, 08:03 AM
Call to a member function userdata() on a non-object - by El Forum - 06-07-2011, 08:18 AM
Call to a member function userdata() on a non-object - by El Forum - 06-07-2011, 09:40 AM
Call to a member function userdata() on a non-object - by El Forum - 06-07-2011, 09:43 AM
Call to a member function userdata() on a non-object - by El Forum - 06-07-2011, 09:51 AM
Call to a member function userdata() on a non-object - by El Forum - 08-13-2011, 03:34 PM
Call to a member function userdata() on a non-object - by El Forum - 08-13-2011, 06:05 PM



Theme © iAndrew 2016 - Forum software by © MyBB