Files
hmngy_pasarela_Frontend/logout.php
LuisAngelSalinasl 8fcbb98114 Primer Commit
2025-08-04 18:51:41 -06:00

8 lines
101 B
PHP

<?php
session_start();
session_unset();
session_destroy();
header('Location: index.php');
exit();
?>