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.