Files
cazubu/logout.php
Gemini Bot 61ede4c325
All checks were successful
Docker Build & Push / build-and-push (push) Successful in 1m36s
Initial commit: Dockerize Cazubu
2025-12-07 17:09:16 +00:00

8 lines
103 B
PHP

<?php
session_start();
$_SESSION = array();
session_destroy();
header("location: login.php");
exit;
?>