Ejemplo n.º 1
0
                        <!-- /.panel-heading -->
                        <div class="panel-body">
                            <div class="dataTable_wrapper">
                                <table class="table table-striped table-bordered table-hover" id="dataTables-example">
                                    <thead>
                                        <tr>
                                            <th>Nombre del Alumno </th>
                                            <th>Telefono</th>
                                            <th>Correo</th>
                                            <th>Curso Activo</th>
                                        
                                        </tr>
                                    </thead>
                                    <tbody>
                                    <?php 
$prep_state = $alumnos->ConsultarAlumnosGeneralUsuario();
while ($row = $prep_state->fetch(PDO::FETCH_ASSOC)) {
    ?>
                                        <tr>
                                            <td>
                                                <form action="VerAlumnoCurso.php" method="POST">
                                                    <input type="hidden" value="<?php 
    echo $row['idcurso'];
    ?>
" name="idcurso">
                                                    <input type="hidden" value="<?php 
    echo $row['idalumno'];
    ?>
" name="idalumno">
                                                    <button type="submit" class="btn btn-link"><?php 
    echo $row['nombrecompleto'];