<div class="table-responsive"> 
    <table class="table table-condensed table-bordered table-hover">
        <thead>
            <tr>
                  <th bgcolor="#D8D8D8">CODIGO</th>
                  <th bgcolor="#D8D8D8">NOMBRE</th>
                  <th bgcolor="#D8D8D8">APELLIDO</th>
                  <th bgcolor="#D8D8D8">EDAD</th>
                  <th bgcolor="#D8D8D8">CEDULA</th>
                    <th bgcolor="#D8D8D8">GENERO</th>
                  <th bgcolor="#D8D8D8">EMAIL</th>
                  <th colspan = 3 bgcolor="#D8D8D8">ACCION</th>
           </tr>
        </thead>
  <?php 
foreach ($EstudianteCollectorObj->showEstudiante() as $c) {
    ?>
  <tbody>
  <tr>
     <td><?php 
    echo $c->getid_estudiante();
    ?>
</td>
     <td><?php 
    echo $c->getnombre();
    ?>
</td>
     <td><?php 
    echo $c->getapellido();
    ?>
</td>