Files
inventario/logout.php
T

6 lines
108 B
PHP
Raw Normal View History

2020-02-26 15:43:19 -06:00
<?php
session_start();
session_unset();
session_destroy();
header("Location: index.php");
?>