foreach ($query->result() as $row)
{
echo anchor("forum/topic/$row->topicid", my_html_escape(($row->name)), 'attributs');
echo ' by ';
echo $this->Stuff->get_topic_author($row->topicid);
echo ' replies ';
echo $this->Stuff->get_replies($row->topicid);
echo ' Last post ';
echo $this->Stuff->get_topic_last_post($row->topicid);
echo br();
}
How do I conveniently pass that to my view. Calling a model function within the original query->result has perplexed me?