Add files via upload

This commit is contained in:
Fernando Méndez
2021-05-18 09:20:24 +02:00
committed by GitHub
parent a9e866ac88
commit 1b39920abd
13 changed files with 155 additions and 58 deletions

View File

@ -0,0 +1,11 @@
<?php
include('../config.php');
function reRol(){
if(isset($_SESSION["lastRol"])){
$_SESSION["rol"] = $_SESSION["lastRol"];
unset($_SESSION["lastRol"]);
}
}
reRol();
header("Location: /");
?>