Código PHP:
$consulta="select * from tabla3 where date_format(fecha,'%Y-%m-%d') = '$fecha_calendario_actual'
";
//echo "$consulta <br><br>";
$res_consulta = mysql_query($consulta, $link);
echo "<table>";
echo "<tr>";
$cuenta=0;
while($row = mysql_fetch_array($res_consulta))
{
$cuenta++;
if($cuenta==4 or $cuenta==8 or $cuenta==12){
echo '</tr><tr>';
}
$x++;
$fecha = $row[fecha];
$estado = $row[estado];
echo"
<td>$x<input type='checkbox' name='estado' value=''></td>
";
}
echo "</tr>";
echo "</table>";
talvez esto te sirva, si no aqui andamos