Implementazione logout

This commit is contained in:
2026-04-17 11:35:22 +02:00
parent b68b7f2824
commit a0c0cef41b
+6
View File
@@ -0,0 +1,6 @@
<?php
session_start();
session_destroy();
header('Location: index.php');
exit();
?>