Просмотр файла ban.php

Размер файла: 1.29Kb
<?php
@$pas=$_GET['pas'];
@$t=$_GET['t'];
@$n=$_GET['n'];
Header('Content-Type:application/xhtml+xml;charset=utf-8');
Header('Cache-Control: no-cache, must-revalidate');
require('ini.php');
print '<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//WAPFORUM//DTD XHTML Mobile 1.0//EN" "http://www.wapforum.org/DTD/xhtml-mobile10.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ru"><head><title>В баню!</title><link rel="stylesheet" type="text/css" href="style.css" /></head><body><div>';
if($pas!=$admp) die('Доступ запрещён.</div></body></html>');
elseif($t=='' || $n=='') die('Ошибка.</div></body></html>');
else{
$ta=file('themes.dat');
$tf=strtok($ta[$t],':||:');
$ma=file('data/'.$tf);
$sa=explode(':||:',$ma[$n]);
$bfa=file('ban.dat');
foreach($bfa as $str){
if($str==$sa[3].':||:'.$sa[4]) die('Уже был забанен.</div></body></html>');
}
$cnt=count($bfa);
$bfa[$cnt]=$sa[3].':||:'.$sa[4];
$f=fopen('ban.dat','w');
$d=implode('',$bfa);
fputs($f,$d);
fclose($f);
print 'Браузер: <span class="dn">'.$sa[3].'</span><br/>
с IP адресом: <span class="dn">'.$sa[4].'</span><br/>
добавлен в бан лист.<hr />
[<a href="view.php?pas='.$pas.'&amp;n='.$t.'">Вернуться</a>]</div></body></html>';
}
?>