I have an object like this:
stdClass Object ( [_count] => 10 [_start] => 0 [_total] => 37 [values] => Array (
echo "" foreach ($object->values as $arr) { foreach ($arr as $obj) { $id = $obj->group->id; $name = $obj->group->name; $html = ""; $html .= "Name : $name"; $html .= "Id : $id"; $html .= ""; } } echo "";