The code displays all the records except the first (problem) Query:
$querycom = "SELECT * FROM comments WHERE el=$el"; $resultcom = mysql_query($querycom);
Output to page:
while($r=mysql_fetch_array($resultcom)){ echo '<div align="center" id="addkomment">'.$r[comment].'</div>'; }