this is really doing my nut in. I\'m passing a multidimensional array to a view like this:
$res = $this->deliciouslib->getRecentPosts();
Assuming that $this->deliciouslib->getRecentPosts()
returns an iterable, you can try:
$data['delicious_posts'] = $this->deliciouslib->getRecentPosts();
and pass it to the view normally. Then, on the view you do something like:
foreach($delicious_posts as $delicious_post){
print_r($delicious_post);
}