Add files via upload

This commit is contained in:
Fernando Méndez
2021-07-02 17:59:22 +02:00
committed by GitHub
parent 8a3d41d2d5
commit 57a0ec644b
80 changed files with 13912 additions and 0 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: /");
?>