X Nations - View Single Post - Looking for a good reliable counter
View Single Post
Old 04-25-2004, 02:55 AM   #11
Gruntled
Gruntled is [Too Long]
not actually disgruntled.
 
Gruntled's Avatar
 
Join Date: Jan 2004
Location: Atlanta, GA
Posts: 1,088
xBucks: 3,440
Send a message via ICQ to Gruntled
Default

Quote:
Originally posted by Gruntled
You can do it in PHP:

Put the following in a file called counter.php

$viewss = file("hits.txt");
$views = $viewss[0]; $views++;
$fp = fopen("hits.txt", "w");
fwrite($fp, $views);
fclose($fp);
print $views;
?>

Then put the include line in the pages you want to hit track, and where ion the page you want the # of hits to show up.

include ("counter.php");
?>

again, I just rely on the server stats. Check out AWstats at sourceforge.net
__________________
Gruntled is offline   Reply With Quote