Welcome To P8ntballer.com
The Home Of European Paintball
Sign Up & Join In

Free Web Counter

Mark

UK Cougars
Jul 9, 2001
1,403
0
0
England
www.ukcougars.co.uk
There are many around I have used this one for a few years now
http://www.ultimatecounter.com/ it is totally configable in style and colours etc and the only requirement is that the counter is included with the built in url for them and it is very small and looks ok if you click on the link for my site you will see how it will look. Though of course you don't have to have the same style I have used as there are loads to choose from on the counter site
 

Philip

Whip it out..
Mar 24, 2002
3,040
12
63
Ellesmere Port
PHP:
<?php


//1) Make a file called count.txt where this file resides
//2) CHMOD it to 777
//3) Add this function to your php script or include it as a separate file
//4) Use by typing echo bti_count(); in your php code.


function bti_count() {
$counterfile = "count.txt";
$count = @join("",file($counterfile));
$count++;
$handle = fopen($counterfile, "w+");
fputs($handle,$count);
fclose($handle);
return $count;
}

?>
Easily done....that should help ya :) Dont forget to chmod the .txt to 777
 
Originally posted by Philip
PHP:
<?php

function bti_count() {
$counterfile = "count.txt";
$count = @join("",file($counterfile));
$count++;
$handle = fopen($counterfile, "w+");
fputs($handle,$count);
fclose($handle);
return $count;
}

?>
Easily done....that should help ya :) Dont forget to chmod the .txt to 777
Thats assuming his webserver does PHP, I just checked the site and its using frames and some kind of NTL homepage so I think thats a no.