try something like this:
PHP Code:
$query = "SELECT * FROM {$prefix}adoptables ORDER BY id DESC LIMIT 5";
$result = runquery($query);
$row = mysql_fetch_array($result);
$image = getcurrentimage($row['id']);
article_content .= '<img src="{$image}" /><br /><b>{$row['type']}</b>';