Просмотр файла tennis/komanda/counter.php

Размер файла: 186B
<?php
$count = file("count.dat");
$count = implode('', $count);
$count = (int)$count;
$count++;
$fh = fopen("count.dat", "w");
fputs($fh, $count);
fclose($fh);
print $count; 
?>