Código PHP:
<table>
<?
//Establecimiento de la conexión
$conex = mysql_connect("localhost", "Database", "pass")
or die("NO se pudo realizar la conexión");
mysql_select_db("table", $conex);
$cons = "select * from `fiestas`";
$resultado = mysql_query($cons, $conex);
$cuenta=0;
while ($fila=mysql_fetch_array($resultado))
{
if ($cuenta==0){
echo "<tr>"; }
?>
<td>
<table>
<tr>
<td width= ><font color=blue><?= $fila["lead"]; ?></td></tr>
<tr><td><?= $fila["mes"]; ?></td></tr>
<tr><td><?= $fila["titular"]; ?></td>
</tr>
</table>
</td>
<?
if ($cuenta==3){
echo "</tr>";
$cuenta=0; }
else {
$cuenta++; }
}
if ($cuenta!=3){
for ($i=0;$i<=(3-$cuenta);$i++){
echo "<td> </td>";
}
echo "</tr>"
}
?>
</table>
Segun yo, esto debe hacer lo que tu necesitas...
Avisame