le paso el código por si uds pueden ver el error q yo no veo!
Cita:
Gracias! <?php
session_start();
// include_once "../Connections/conexionBases.php";
include_once "conexionbd.php";
$busca= date('d/m/Y');
$busqueda=mysql_query("SELECT * FROM horarios WHERE fecha LIKE '%".$busca."%'");
?>
<body>
<p> </p>
<p align="center"><label style="text-align:center; font-family:Verdana, Geneva, sans-serif; font-size:18px">Registro del día de la Fecha</label></p>
<p> </p>
<table width="80%" border="0" align="center" cellpadding="2" class="borde" id="header">
<tr align="center">
<td bgcolor="#CCCCCC" ><label><b>Fecha</b></label></th>
<th bgcolor="#CCCCCC"><label><b>Personal</b></label></th>
<th bgcolor="#CCCCCC"><label><b>Turno</b></label></th>
<th bgcolor="#CCCCCC"><label><b>Hora del Turno</b></label></th>
<th bgcolor="#CCCCCC"><label><b>Observaciones</b></label></th>
</tr>
<?php while($f=mysql_fetch_array($busqueda)){ ?>
<tr>
<td align="center"><?php echo $f['fecha']; ?></td>
<td><?php echo $f['nombre']; ?></td>
<td align="center"><?php echo $f['horario']; ?></td>
<td align="center"><?php echo $f['reloj']; ?> hs.</td>
<td><?php echo $f['ob']; ?></td>
</tr>
<?php }?>
</table>
</body>
session_start();
// include_once "../Connections/conexionBases.php";
include_once "conexionbd.php";
$busca= date('d/m/Y');
$busqueda=mysql_query("SELECT * FROM horarios WHERE fecha LIKE '%".$busca."%'");
?>
<body>
<p> </p>
<p align="center"><label style="text-align:center; font-family:Verdana, Geneva, sans-serif; font-size:18px">Registro del día de la Fecha</label></p>
<p> </p>
<table width="80%" border="0" align="center" cellpadding="2" class="borde" id="header">
<tr align="center">
<td bgcolor="#CCCCCC" ><label><b>Fecha</b></label></th>
<th bgcolor="#CCCCCC"><label><b>Personal</b></label></th>
<th bgcolor="#CCCCCC"><label><b>Turno</b></label></th>
<th bgcolor="#CCCCCC"><label><b>Hora del Turno</b></label></th>
<th bgcolor="#CCCCCC"><label><b>Observaciones</b></label></th>
</tr>
<?php while($f=mysql_fetch_array($busqueda)){ ?>
<tr>
<td align="center"><?php echo $f['fecha']; ?></td>
<td><?php echo $f['nombre']; ?></td>
<td align="center"><?php echo $f['horario']; ?></td>
<td align="center"><?php echo $f['reloj']; ?> hs.</td>
<td><?php echo $f['ob']; ?></td>
</tr>
<?php }?>
</table>
</body>