PHP Classes

File: php/look.php

Recommend this page to a friend!
  Classes of Luis Gabriel Hernandez Valderrama   PHP Billing System Reports   php/look.php   Download  
File: php/look.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: PHP Billing System Reports
Display and email customer billing reports
Author: By
Last change:
Date: 4 years ago
Size: 372 bytes
 

Contents

Class file image Download
<?php
//Reanudamos la sesión
@session_start();
//Validamos si existe realmente una sesión activa o no
if($_SESSION["autentica"] != "SIP")
{
 
//Si no hay sesión activa, lo direccionamos al index.php (inicio de sesión)
 
echo "<script>alert('Por favor inicie sesión para continuar.');";
  echo
"location.href = 'index.html';</script>";
  exit();
}
?>