Código PHP:
<?
echo "<table>";
$i=1;
while($noticias = next($rher))
{
echo ($i==1) ? "<tr>" : "";
?>
<td width="33%" class="body" valign="top"><table width="97%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="89%" class="texto_gris"><?=$noticias['subjudul']?></td>
<td width="11%" rowspan="2" class="taba_borde_noticias_varias"> </td>
</tr>
<tr>
<td class="titulo3"><a href="#" class="titulo3"><?=$noticias['judul']?></a></td>
</tr>
</table></td>
<?
if($i==3){
echo "</tr>";
$i=0;
}
$i++;
}
?>