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
What I was looking for is a way to fetch the data
so I used this $data = $this->db->get('table_name')->result_array();
and then fetched my data just as you operate on array objects.
$data[0]['field_name']
No need to worry about type casting or anything just straight to the point.
So it worked for me.