Форум АНТИЧАТ

Форум АНТИЧАТ (https://forum.antichat.xyz/index.php)
-   PHP, PERL, MySQL, JavaScript (https://forum.antichat.xyz/forumdisplay.php?f=37)
-   -   Счётчик скачиваний (https://forum.antichat.xyz/showthread.php?t=175035)

VladZombie 31.01.2010 15:42

Счётчик скачиваний
 
Нужен простенький счётчик скачиваний. Недавно стоял вот этот счётчик:

PHP код:

<?php
if ($file==1) {
header("location: file.exe");
$file=fopen("file.txt","a+");
flock($file,LOCK_EX);
$count=fread($file,100);
$count++;
ftruncate($file,0);
fwrite($file,$count);
flock($file,LOCK_UN);
fclose($file);
}
?>

Но на хостинге hut2.ru он почемуто не работает :mad:

Chaak 31.01.2010 17:51

у тебя $file не равно 1)


Время: 21:25