19 lines
378 B
PHP
19 lines
378 B
PHP
<?php
|
|
require_once('../models/alumno.php');
|
|
require_once('../rut_validacion.php');
|
|
|
|
$rut = $_POST['rut'];
|
|
$nombre = $_POST['nombre'];
|
|
|
|
if(!validar_rut($rut)){
|
|
header("location: /alumnos/registrar.php");
|
|
exit();
|
|
}
|
|
|
|
$alumno = new Alumno();
|
|
$alumno->set_rut($_POST['rut']);
|
|
$alumno->set_nombre($_POST['nombre']);
|
|
|
|
if($alumno->save()) header("location: /alumnos/index.php");
|
|
?>
|