I made simple counter for you, this is wht i use with my pages.
Code:
<?php
$hits=NULL;
$file=fopen("hits.txt","a+");
$hits=fgets($file);
$hits=$hits+1;
$file=fopen("hits.txt","w");
fputs($file,$hits);
fclose($file);
echo $hits;
?>
Last edited by labintador; 09-30-2004 at 02:48 PM..
|