This repository has been archived on 2025-06-01. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
bigly-chat/docs/logout.php
2024-12-04 22:44:00 -05:00

13 lines
No EOL
263 B
PHP
Executable file

<?php
require("../libs/page.php");
page_header();
if (isset($_COOKIE)) {
foreach ( $_COOKIE as $key => $value )
{
setcookie( $key, FALSE );
}
header("Location: /");
die();
}
page_footer();
?>