new-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();
?>