|
this is a counter script, i was wondering if anyone could modify it so that it logs daily hits into another text file or html page that displays how many hits youve gotten every day for the last 30 days.
<?
$countfile = file("count.txt");
$count=$countfile[0];
$count=$count+1;
$fp = fopen("count.txt","w");
$fw = fwrite($fp,$count);
fclose($fp);
echo $count;
?>
|