TinyPortal

Development => Block Codes => Topic started by: evillair on June 09, 2007, 06:17:26 AM

Title: Easy counter
Post by: evillair on June 09, 2007, 06:17:26 AM
The easiest counter I found...

1. Make a counter.txt file with a the number 0, or which ever you want your counter to start with.
2. Upload it to the root of your SMF site.
3. Make sure it's writable, CHMOD it to 777.

4. Add this to a 'phpbox'


$File = "counter.txt";
$handle = fopen($File, 'r+') ;
$data = fread($handle, 512) ;
$count = $data + 1;

echo 'You are visitor number: '.$count;

fseek($handle, 0) ;
fwrite($handle, $count) ;
fclose($handle) ;