13 lines
No EOL
263 B
PHP
Executable file
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();
|
|
?>
|