First commit based on v0.1

This commit is contained in:
2023-02-13 08:34:23 +01:00
commit 2efd4ad0ab
56 changed files with 3374 additions and 0 deletions

11
logout.php Normal file
View File

@@ -0,0 +1,11 @@
<?php
include("header.php");
// clear and destroy session
$_SESSION = array();
session_destroy();
header("Location: index.php");
include("footer.php");
?>