<?php
include
('files/zag.php');
if(isset($_COOKIE['aut']) and $_COOKIE['aut']
== 1){
setcookie('log', '', time()-(((60*60)*24)*365), '/');
setcookie('pas', '', time()-(((60*60)*24)*365), '/');
setcookie('aut', '', time()-(((60*60)*24)*365), '/');
header('Location: /index.php');
}else{
header('Location: /index.php');
}
?>