You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
331 B
PHP
17 lines
331 B
PHP
<?php
|
|
|
|
while (list($key) = each ($_COOKIE)){
|
|
// echo $key."<br>\n";
|
|
setcookie($key,'',time() - (24*3600));
|
|
}
|
|
|
|
$Cookie_Admin = 'l3lib-AdMiN';
|
|
$MAX_TAGE = 999;
|
|
setcookie($Cookie_Admin,'oK',time()+$MAX_TAGE*24*3600);
|
|
|
|
echo "<head>";
|
|
echo '<meta http-equiv="refresh" content="0; URL=index.html">';
|
|
echo "</head>";
|
|
|
|
|
|
?>
|