first commit

This commit is contained in:
Emanuele Slusarz
2026-08-22 11:15:29 +02:00
commit ec30fb40b9
38 changed files with 3723 additions and 0 deletions
Executable
+17
View File
@@ -0,0 +1,17 @@
<?php
session_start();
// Svuota i dati della sessione
$_SESSION = [];
// Distrugge la sessione
session_destroy();
// Torna al login
header("Location: index.php");
exit;