i have this code:
<?
$sql = mysql_query("SELECT * FROM VIDEOS ORDER BY ID DESC");
while($rs = mysql_fetch_assoc($sql)){
?>
<img src="<?echo $rs['V_LOGO'];?>" width="150px" height="150px" />
<p><a href="view.php?v=<?echo $rs['ID'];?>"><?echo $rs['V_TITLE'];?></a></p><br />
<p><?echo $rs['V_DESC'];?></p>
<?}?>
and I want to show videos next to each other, and every five videos in a new line, How I can do that??