Erstellen der nächsten Projektversion

This commit is contained in:
2026-05-24 11:23:53 +00:00
parent 810ac71e29
commit ae0d150684
21 changed files with 1100 additions and 2 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
session_start();
class OFF {
function ausloggen() {
session_destroy();
$dat = "index.php";
header("Location: $dat");
}
}
$obj = new Off();
$obj -> ausloggen();
?>