hackernewsclone/account/logout.php
2024-02-23 20:40:00 +00:00

6 lines
106 B
PHP
Executable file

<?php
session_start();
session_destroy();
// Redirect to the login page:
header('Location: index.php');
?>