Código PHP:
<table border="1">
<tr>
<th scope="col">nombre</th>
<th scope="col">fecha</th>
<th scope="col">fecha</th>
<th scope="col">fecha</th>
<th scope="col">muchas fechas....</th>
</tr>
//AQUI EMPIEZAS EL WHILE PARA RECORRER LOS DATOS
<tr>
<td>javier</td>
<td>1</td>
<td>0</td>
<td>0</td>
<td>...</td>
</tr>
//AQUI CIERRA EL WHILE
//Por cada ciclo se genera una fila, osea todo el registro se muestra.
</table>