vixod.php 292 B

12345678910
  1. <?php
  2. unset($_COOKIE['id']);
  3. unset($_COOKIE['login']);
  4. unset($_COOKIE['password']);
  5. setcookie('id', '', time() - 3600, '/');
  6. setcookie('login', '', time() - 3600, '/');
  7. setcookie('password', '', time() - 3600, '/');
  8. echo "<script>window.location.href = 'index.php'</script>";
  9. ?>