Размер файла: 684B
<?
$status="0";
if(isset($id)&&isset($kod1)){
If (is_numeric($id)) {
$agent = $HTTP_USER_AGENT;
$mobile=strtok($agent,"/");
$zzz=time();
$ag=mysql_query("select * from `agents` where id='$id' && agent='$mobile' ");
$data = mysql_fetch_array($ag);
$rowws=mysql_num_rows($ag);
if ($rowws==0){
mysql_query("insert into `agents` values('$id','$mobile','$zzz')");
$status="5";
}
else
{
$ag=mysql_query("select * from `agents` where id='$id' && agent='$mobile' ");
$data = mysql_fetch_array($ag);
$times=$data['time']+630;
if ($zzz>$times){
@mysql_query("update `agents` set time='$zzz' where `id`='$id' && agent='$mobile' ");
$status="5";
}
}
}
}
?>