Thanks Xenon, but that does not seem to work, or I am just doing something wrong (the second part is probably the problem

).
Here is what I have, could you please tell me if there is a problem with this?
PHP Code:
$listreply = ("SELECT post.*, reply.name as replyname, reply.subtitle as replysubtitle
FROM hd_posts as post
LEFT JOIN hd_replies as reply ON (post.id = reply.tid)");
while($listreplies = $DB_site->fetch_array($listreply)) {
eval('$viewreplies .= "' . fetch_template('viewreplies') . '";');
}
Using the above I get the following output at the top of the page:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /path/to/includes/db_mysql.php on line 250