diff options
Diffstat (limited to 'admin/WebConsole/acceso.php')
-rw-r--r-- | admin/WebConsole/acceso.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/admin/WebConsole/acceso.php b/admin/WebConsole/acceso.php new file mode 100644 index 00000000..20c6dc82 --- /dev/null +++ b/admin/WebConsole/acceso.php @@ -0,0 +1,18 @@ +<? +// ******************************************************************************************************** +// Aplicación WEB: ogAdmWebCon +// Autor: José Manuel Alonso (E.T.S.I.I.) Universidad de Sevilla +// Fecha Creación: Diciembre-2003 +// Fecha Última modificación: Marzo-2005 +// Nombre del fichero: barramenu.php +// Descripción :Este fichero implementa el menu general de la Aplicación +// ******************************************************************************************************** +if(isset($_SESSION)){ // Si existe algua sesión ... + session_unset(); // Elimina variables + session_destroy(); // Destruye sesión +} +$herror=0; +if (isset($_GET["herror"])) $herror=$_GET["herror"]; +if (isset($_POST["herror"])) $herror=$_POST["herror"]; +Header("Location: acceso_esp.php?herror=".$herror); // Redireccionamiento a la página de inicio en el idioma por defecto +?>
\ No newline at end of file |