- Impact
- 37
Hey,
I'm looking to use a hit counter on a site of mine and was wondering if it is possible to clear the contents of the .txt via phpe very 24 hours?
The code I am using is:
Any help would be great :tu:
I'm looking to use a hit counter on a site of mine and was wondering if it is possible to clear the contents of the .txt via phpe very 24 hours?
The code I am using is:
PHP:
<?php
$filename = "counter.txt";
$handle = fopen($filename, "r");
$views = fread($handle, filesize($filename));
fclose($handle);
$handle = fopen($filename, "w");
$views++; //Adds 1 hit
fwrite($handle, $views);
fclose($handle);
echo $views;
?>
Any help would be great :tu:








