SLIPKNOT CPD
10-17-2003, 01:39 PM
i was wondering if anyone would be nice enough to modify this text-counter script for me so that it logs daily totals into another text file but while keeping count and displaying total hits :)
<?
$countfile = file("scripts/data/count.txt");
$count=$countfile[0];
$count=$count+1;
$fp = fopen("scripts/data/count.txt","w");
$fw = fwrite($fp,$count);
fclose($fp);
print "$count Total Hits";
?>
<?
$countfile = file("scripts/data/count.txt");
$count=$countfile[0];
$count=$count+1;
$fp = fopen("scripts/data/count.txt","w");
$fw = fwrite($fp,$count);
fclose($fp);
print "$count Total Hits";
?>
