Размер файла: 1.29Kb
<?php
///////////////////////////////////////////////////////////////////////////////////////////
/////
///// ********* COUNT-DOWN VER.2 *********
///// version 1.0
///// Made by : VANTUZ
///// E-mail : [email protected]
///// WEB-site : http://www.pizdec.ru
///// WAP-site : http://wap.pizdec.ru
///// Skripts : http://wapstop.ru
/////
//////////////////////////////////////////////////////////////////////////////////////////////
$s=$_GET['s'];
if(@file ("http://$s"))
{
header("location: http://$s");
$file = fopen("count/$s","r");
$zapis = fread($file, 100);
$count = ($zapis + 1);
fclose($file);
$file2 = fopen("count/$s","a+");
ftruncate($file2,0);
fputs($file2, $count);
fflush($file2);
flock($file2,LOCK_UN);
fclose($file2);
chmod ("count/$s", 0777);
}
else
{
echo "<br>Ошибка, Невозможно зайти на требуемый вам сайт <b>$s</b><br><hr><a href=\"http://visavi.net\">: На главную</a>";}
exit;
?>