Initial commit

This commit is contained in:
“VeLiTi”
2024-03-15 12:43:10 +01:00
commit 670b00eeab
424 changed files with 216891 additions and 0 deletions

15
logout.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
// Start sessions
session_start();
$_SESSION = array();
// Destroy all session related to user
$_SESSION['profile'] = '';
session_unset();
session_destroy();
// Redirect to login page
header('location: index.php');
exit;
?>