Gracias
Código PHP:
<?php
$i=0;
do {
$i++;?>
<tbody>
<tr>
<td><?php echo $i; ?></td>
<td><?php echo $row_docentes['Nombre']; ?></td>
<td><?php echo $row_docentes['ApellidoPaterno']; ?></td>
<td><?php echo $row_docentes['ApellidoMaterno']; ?></td>
<td><?php echo $row_docentes['Email']; ?></td>
</tr>
</tbody>
<?php if ($i%2==0) {?>
</table>
<table border="1">
<thead> <tr>
<td>No.</td>
<td>Nombre</td>
<td>A. paterno</td>
<td>A. Materno</td>
<td>Email</td>
</thead>
</tr>
<?php } ?>
<?php } while ($row_docentes= mysql_fetch_assoc($docentes)); ?>
La Tabla quedo así
https://ibb.co/dC2xOF
Para la prueba cambie a 2 registros... los primeros 2 salen sin encabezados 3 y 4 bien ... 5 bien, pero en este debo aumentar uno vació para tener el 6to... alguna idea... de antemano gracias nuevamente