Showing posts with label easy total hits. Show all posts
Showing posts with label easy total hits. Show all posts

Tuesday, August 3, 2010

easy total hits

easy total hits  ,put it on page where want to count hits 

PHP Code:
$counter_array file("counter.dat");$all $counter_array[0]+1;$fp = @fopen("counter.dat","wb");
@
fputs($fp,$all);
@
fclose($fp);

echo 
'
Total hits: '
.$all.'
'
;