html body mysql result:
<?
$sqlcomments = "SELECT * from sellercomments where Status=1 and SellerID=".$_REQUEST['SellerID']. " order by AddedDate desc";
$resultcomments= mysql_query($sqlcomments);
if (@mysql_num_rows($resultcomments)!=0){
?>
<br>
<?
while($row_comments = @mysql_fetch_array($resultcomments))
{
?>
<div align="right"><img src="../<?=$row_sellerdetails['AboutUsImage']?>" width="40" height="40" border="0"></div>
<?=$row_comments['CommentBy']?>] to <a href="index.php?SellerID=<?=$_REQUEST['SellerID']?>">
<?=$row_sellerdetails['idName']?></a>
<span style="color:#000000"><?=$row_comments['Comment']?></span> <br>
<?
}
}
?>
------ end: want to delete this comment result?>>>