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