maybe you could try this:
PHP Code:
<?php
include("inc/functions.php");
include("inc/bbcode.php");
//***************//
// START SCRIPT //
//***************//
getpage('index');
// Convert the BBCODE to HTML
$article_content = bbconvert($article_content);
// Convert line breaks to <br>
$article_content = nl2br($article_content);
$query = "SELECT * FROM ".$prefix."adoptables ORDER BY id DESC LIMIT 5";
$result = runquery($query);
while($row = mysql_fetch_array($result)){
$image = getcurrentimage($row['id']);
article_content .= '<img src="{$image}" /><br /><b>{$row['type']}</b>';
}
//***************//
// OUTPUT PAGE //
//***************//
echo showpage($article_title, $article_content, $date);
?>