Quote:
|
Originally Posted by rec0n
here you go..
|
Thanks.....
Well I got a page hit counter from a different posting on the same forum.
Thanks again.
The code I got is:
<?php
$file = "count.txt";
$open = fopen($file, "r");
$size = filesize($file);
$count = fread($open, $size);
fclose($open);
$open = fopen($file, "w");
$count++;
fwrite($open, $count);
echo $count;
fclose($open);
?>