Files
ipreg/logout.php
T
2023-02-13 08:34:23 +01:00

11 lines
177 B
PHP

<?php
include("header.php");
// clear and destroy session
$_SESSION = array();
session_destroy();
header("Location: index.php");
include("footer.php");
?>