<div class="comments">
<?php
$qr = $pdo->query("SELECT head,comment FROM comments ORDER BY id DESC limit 30");
while($res = $qr->fetch()) {
echo '<div class="comment"><h1>'.$res["head"].'</h1><p>'.$res["comment"].'</p></div>';
}
?>
</div>