File "logout.php"

Full Path: C:/wamp64/www/INVENTALMACEN/login/logout.php
File size: 315 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
session_start();
unset($_SESSION['user']);
unset($_SESSION['dcto']) ;
unset($_SESSION['fecha']);
unset($_SESSION['lote']);
unset($_SESSION['cliente']);
unset($_SESSION['ubicacion']);
unset($_SESSION['planilla']);
unset($_SESSION['controlReg']);
session_destroy();
header("Location: login.php");
?>