Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created October 5, 2020 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/77fd2564caf0d36d6cfd3c63ed61c1f7 to your computer and use it in GitHub Desktop.
Save parzibyte/77fd2564caf0d36d6cfd3c63ed61c1f7 to your computer and use it in GitHub Desktop.
<?php
include_once "conexion.php";
include_once "encabezado.php";
include_once "Estudiante.php";
$estudiantes = Estudiante::obtener();
?>
<div class="row">
<div class="col-12">
<h1>Listado de estudiantes</h1>
<a href="formulario_registro_estudiante.php" class="btn btn-info my-2">Nuevo</a>
</div>
<div class="col-12 table-responsive">
<table class="table table-bordered">
<thead>
<tr>
<th>Nombre</th>
<th>Grupo</th>
<th>Notas</th>
<th>Editar</th>
<th>Eliminar</th>
</tr>
</thead>
<tbody>
<?php foreach ($estudiantes as $estudiante) { ?>
<tr>
<td><?php echo $estudiante["nombre"] ?></td>
<td><?php echo $estudiante["grupo"] ?></td>
<td>
<a href="notas_estudiante.php?id=<?php echo $estudiante["id"] ?>" class="btn btn-info">
Notas
</a>
</td>
<td>
<a href="editar_estudiante.php?id=<?php echo $estudiante["id"] ?>" class="btn btn-warning">
Editar
</a>
</td>
<td>
<a href="eliminar_estudiante.php?id=<?php echo $estudiante["id"] ?>" class="btn btn-danger">
Eliminar
</a>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</div>
</div>
<?php
include_once "pie.php";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment