Files
Inventario_material_v1/destroy.php
T

12 lines
183 B
PHP
Raw Normal View History

2019-01-15 20:28:24 -06:00
<?php
/**
* Created by PhpStorm.
* User: Gabriel Fuentes
* Date: 15/01/2019
* Time: 05:59 PM
*/
session_start();
session_destroy();
header('Location: index.php');
?>