class Controller_Pages extends Controller {
public function action_list()
{
// Extract pages from DB ( optionally joined with another relantionship table )
$data['pages'] = DB::select()->from('pages)->execute()->as_array();
return Response::forge($view, $data);
}
}
<ul>
<?php
foreach($pages as $page)
{
.....
}
?>
</ul>
It looks like you're new here. If you want to get involved, click one of these buttons!