Files
whatsfordinner/logout.php
T
2024-11-22 19:30:26 -08:00

7 lines
88 B
PHP

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