it was just an example, not the full query, you have to add some reply fields at the end (folow my example of subtitle

)
and then the code itself you forgot an $DB_site
PHP Code:
$listreply = $DB_site->query("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') . '";');
}
then be sure your viewreplies template does use the correct varnames