Muchas gracias por su ayuda...
Este es el codigo de la tabla:
Código:
<div>
<p>Hoy > En la mañana</p>
<table id="agenda" border="1">
<tr>
<td align="center"><strong>Hora de Inicio</strong></td>
<td align="center"><strong>Titulo</strong></td>
<td align="center"><strong>Descripcion</strong></td>
<td align="center"><strong>Lugar</strong></td>
<td align="center"><strong>Fecha de Inicio</strong></td>
<td align="center"><strong>Fecha de Terminación</strong></td>
<td align="center"><strong>Telefono</strong></td>
<td align="center"><strong>Horario</strong></td>
<td align="center"><strong>Entrada</strong></td>
<td align="center"><strong>Enlace</strong></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<?php do { ?>
<tr>
<td align="left"><?php echo $row_Recordset1['hora_fun']; ?></td>
<td align="left"><?php echo $row_Recordset1['titulo']; ?></td>
<td align="left"><?php echo $row_Recordset1['decr']."..."; ?></td>
<td align="left"><?php echo $row_Recordset1['Lugar']; ?></td>
<td align="left"><?php echo $row_Recordset1['f_inicio']; ?></td>
<td align="left"><?php echo $row_Recordset1['f_fin']; ?></td>
<td align="left"><?php echo $row_Recordset1['tel_info1']; ?></td>
<td align="left"><?php echo $row_Recordset1['horario']; ?></td>
<td align="left"><?php
if ($row_Recordset1['entrada'] == 0)
{echo "Libre";}
elseif($row_Recordset1['entrada'] == 1)
{echo "Pagada <br>";}
else
{echo "";}
?> </td>
<td align="left"><a href="show_event.php?recordID=<?php echo $row_Recordset1['id']; ?>">Leer mas</a></td>
</tr>
<?php } while ($row_Recordset1 = mysql_fetch_assoc($Recordset1)); ?>
</table>
</div>
Y este es el codigo CSS:
Código:
#agenda{
empty-cells:hide;
border-collapse: collapse;
font: normal 10px verdana, arial, helvetica, sans-serif;
color: #000000;
background: #7EB0ED;
border: 2px solid #999999;
padding: 2px;
}
Muchas gracias por su colaboración...