[eluser]InsiteFX[/eluser]
In your view, something like this.
Also load the CodeIgniter Typography Class.
You will need to modify to work with your stuff.
Code:
// view code.
if (count($posts))
{
foreach ($posts as $key => $list)
{
echo "<h2>" . $list['title'] . "</h2>\n";
echo auto_typography(word_limiter($list['body'], 200));
echo anchor('blog/post/' . $list['id'], 'read more >>');
}
echo "<br/><br/>";
}
InsiteFX