6 lines
117 B
PHP
6 lines
117 B
PHP
<?php
|
|
require_once('../models/alumno.php');
|
|
Alumno::delete($_POST['id']);
|
|
header("location: /alumnos/index.php");
|
|
?>
|