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.

15 lines
278 B
PHP

<?php
$Cookie_Admin = 'l3lib-AdMiN';
$MAX_TAGE = 999;
if ( $_COOKIE[$Cookie_Admin] == 'oK'){
setcookie($Cookie_Admin,'',time() - (24*3600));
echo "Adminbit gelöscht";
}else{
setcookie($Cookie_Admin,'oK',time()+$MAX_TAGE*24*3600);
echo "Adminbit gesetzt";
}
?>