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

Размер файла: 1.18Kb
<?php
#-----------------------------------------------------#
#          ********* WAP-MOTORS *********             #
#             Made by   :  VANTUZ                     #
#               E-mail  :  [email protected]         #
#                 Site  :  http://pizdec.ru           #
#             WAP-Site  :  http://visavi.net          #
#                  ICQ  :  36-44-66                   #
#  Вы не имеете право вносить изменения в код скрипта #
#        для его дальнейшего распространения          #
#             MoD by XSIT http://xsit.ru              #
#-----------------------------------------------------#	
$s=$_GET['s'];
if(@file ("http://$s"))
{
header("location: http://$s");
$file = fopen("local/datasites/$s.dat","r");
$zapis = fread($file, 100);
$count = ($zapis + 1);
fclose($file);
$file2 = fopen("local/datasites/$s.dat","a+");
ftruncate($file2,0);
fputs($file2, $count);
fflush($file2);
flock($file2,LOCK_UN);
fclose($file2);
chmod ("local/datasites/$s.dat", 0777);
echo"<a href='http://$s/'>Перейти</a>";
}else{
header ("Location: ../index.php?isset=404&".SID); exit;
}
?>