Object of class stdClass could not be converted to string
I am having a problem with PHP at the moment, I am getting this error, Object of class stdClass could not be converted to string the error occurs when I run this portion of code in my site, function myaccount() { $data['user_data'] = $this->auth->get_userdata($this->uri->segment(3)); //var_dump($data['user_data']); $this->load->model('users_model'); $data['user_info'] = $this->users_model->get_user_and_roadmaps_by_id($this->uri->segment(3)); $this->template->build('users/my_account', $data); } The line in which the error is occuring is this one, $data['user_data'] = $this->auth->get_userdata(