PhpShit/logout.php
2024-05-09 10:20:54 +08:00

12 lines
156 B
PHP

<html>
<body>
<div class="login-box">
<?php
session_start();
session_destroy();
header("location:index.php");
?>
</div>
</body>
</html>