LoginLogoff
Project loginlogoff
Loading...
Searching...
No Matches
cDetalle.php
Go to the documentation of this file.
1<?php
2/* Nombre: Alvaro Garcia Gonzalez
3* Fecha: 16/12/2025
4* Uso: controlador del detalle*/
5 //este if se usa para que los usuarios no se salten el control de acceso
6 if(empty($_SESSION['usuarioMiAplicacion'])){
7 $_SESSION['paginaEnCurso']='inicioPublico';
8 header('Location: indexLoginLogoff.php');
9 exit;
10 }
11
12 if(isset($_REQUEST['VOLVER'])){
13 $_SESSION['paginaEnCurso']='inicioPrivado';
14 header('Location: indexLoginLogoff.php');
15 exit;
16 }
17 require_once $view['layout'];
18 ?>
$view
Definition confAPP.php:27