Store in GIT

This commit is contained in:
2026-06-17 15:46:26 +02:00
parent 47150cc7ca
commit 876ad89e72
134 changed files with 31034 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
require('../../../inc/connect.php');
$error = isset($_GET['error']) ? $_GET['error'] : 'You have succesfully logged out';
if(isSession())
{
$sessionid = getSession();
$sql = "DELETE FROM session WHERE `session`='" . $sessionid . "'";
ExecQuery($mysqli, $sql);
destroySession();
}
$link = ROOT . "login?error=" . $error;
header("Location: $link");
?>