I'm using the codeigniter framework, I'm retrieving data from the database in the form of an array but when i try to use the foreach function to display the data i get an error
Message: Object of class stdClass could not be converted to string
this is the array
Array
(
[0] => stdClass Object
(
[id] => 1
[title] => title
[data] => data
)
)
*The foreach is
foreach($data as $r) echo $r