This is my code now:
<?
while($row = mysql_fetch_object($result))
{
?>
<tr>
<td width="25%"><a href= "<? echo $row->site_address ?>" target="_blank">
<? echo $row->site_name ?>
</a><br>
<? echo $row->description;?>
</td>
</tr>
<?
}
?>
I want to make start a new column after 10 resutls. Any suggestions?