Ver Mensaje Individual
  #4 (permalink)  
Antiguo 04/09/2007, 08:49
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 8 meses
Puntos: 2135
Re: Problema con tabla para mostrar datos con php y base de datos mysql

Tu problema no es de PHP, es de HTML, necesitas poner bien tu tabla, para generar una tabla como la que necesitas debes de usar rowspan y colspan:
Código HTML:
<table>
      <tr>
             <th>Equipo</th>
             <th>Tipo de Tarjeta</th>
             <th>Estatus</th>
             <th colspan="3">Fecha de Ingreso</th>
      </tr>
      <tr>
             <th></th>
             <th></th>
             <th></th>
             <th>Dia</th>
             <th>Mes</th>
             <th>Año</th>
      </tr>
      <tr>
              <td>ejem</td>
              <td>ejem</td>
              <td>ejem</td>
              <td>10</td>
              <td>06</td>
              <td>07</td>
      </tr>
</table> 
Saludos.