Cita:
Iniciado por bUllan9ebrio Juaz!!! estas realizando lo mismo que yo ....... realize la tabla con las siguientes cabeceras :
Código HTML:
Ver original<table width="100%" border="1"> <!--ESTA PARTE SE RELLENA MEDIANTE UNA CONSULTA PARA VERIFICAR LA CANTIDAD DE DIAS DEL MES-->
<!--TAMBIEN LO LLENAS POR MEDIO DE UNA CONSULTA PARA SABER LA CANTIDAD DE NOMBRES A DESPLEGAR Y LOS RADIO BUTTONS SE REALIZAN ATRAVEZ DE UN COUNT A LAS FECHAS :p-->
<!--ACA EL WHILE-->
<td align="center"><input type="radio" name="<?php echo $fecha;?>">
</td>
algo asi mas menos es la idea a realizar, espero te sirva.
Gracias por tu interes
, pero los encabezados no los puedo generar... estoy intentando esto:
Código PHP:
Ver original<table border="1">
<? do {?>
<tr>
<th scope="col">nombre</th>
<th scope="col">fecha</th>
<th scope="col">fecha</th>
<th scope="col">fecha</th>
<? echo "<th>" .$clases["fecha_clase"]. "</th>";?>
</tr>
<tr>
<td>pedro</td>
<td>1</td>
<td>1</td>
<td>0</td>
<? echo "<td>". 1 . "</td>"?>
</tr>
</table>
Según pensé me deberia dibujar los <TH></TH> y luego ir agregando los <TD></TD>, pero me va agregando filas con las fechas hacia abajo como esto:
nombre fecha fecha fecha
pedro 1 1 0 1
nombre fecha fecha fecha 2010-10-20
pedro 1 1 0 1
nombre fecha fecha fecha 2010-10-27
pedro 1 1 0 1
Gracias.