Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.
<?php
$file="counter.txt";
$handle=fopen($file, "r");
$hits=fread($handle,filesize("$file"));
$hits+=1;
fclose($handle);
echo "$hits";
$handle=fopen($file, "w");
fwrite($handle, $hits);
fclose($handle);
?>
1 to 2 of 2