</div>
  </div>
<br><table class="table">
  <tr>
    <th>Nombre Y Apellido</th>
    <th>Numero de Identidad</th>
    <th>Telefono</th>
    <th>Correo</th>
    <th>Fecha de Inscripcion del Alumno</th>
    <th>Curso o Taller</th>
    <th>Estatus de Pago</th>
    <th>Acciones</th>
  </tr>
  <?php 
$objInscripcion = new Inscripciones();
$res = $objInscripcion->getInscripciones();
while ($datos = mysql_fetch_array($res)) {
    ?>
  <tr>
    <td><?php 
    echo $datos['nombre_apellido_alumno'];
    ?>
</td>
    <td><?php 
    echo $datos['identificacion_alumno'];
    ?>
</td>
    <td><?php 
    echo $datos['telefono_alumno'];
    ?>
</td>