This commit is contained in:
Daniel Cortés
2019-12-13 13:53:12 -03:00
parent f480b2942f
commit fdada2adcc
14 changed files with 220 additions and 132 deletions

5
alumnos/delete_post.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
require_once('../models/alumno.php');
Alumno::delete($_POST['id']);
header("location: /alumnos/index.php");
?>