Файл: ok.php
Строк: 14
<?php
include ("files/zag.php");
if(isset($_COOKIE['aut']) and $_COOKIE['aut']
== 1){
if($u['okr'] == ''){
header('Location: /gorod.php'); exit;
}
if(file_exists('data/btmp/'.$u['log'].'.dat')){
header('Location: /b.php'); exit;
}
if($u['hp'] <= 0){
header('Location: /okrestnosi.php'); exit;
}
$id = check::num($_GET['id']);
$mobs = file('data/mob.dat');
if($id != 0){
if(empty($id) or $mobs[$id]
== ''){
echo '
Такого моба не существует!
';
include ('file/down.php'); exit;
}
}
$addb = $id.':||:';
$fp = fopen('data/btmp/'.$u['log'].'.dat', 'w');
flock($fp,LOCK_EX);
fputs($fp,"$addb");
fflush($fp);
flock($fp,LOCK_UN);
fclose($fp);
header('Location: /b.php');
}else{
header('Location: /index.php');
}
?>