Hinzufügen und bearbeiten Session únd Cookies sowohl inhalt Login/regfehler Navmitglieder

This commit is contained in:
2026-04-26 14:45:02 +00:00
parent 3b462c5f0f
commit 1ae601801e
8 changed files with 149 additions and 6 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();
?>