Here is the file I used for the Unique Forum Counter, all that you would need to do is:
1) Make a table called forumcounter using the following SQL/MySQL query:
Code:
CREATE TABLE forumcounter (
id int(11) NOT NULL auto_increment,
month char(2) NOT NULL default '',
day char(2) NOT NULL default '',
year varchar(4) NOT NULL default '',
remoteip varchar(250) NOT NULL default '',
PRIMARY KEY (id)
)
2) Upload forumcounter.php to your forums directory
3) Then edit your phpinclude template and add this code after the last comment:
Code:
include ("forumcounter.php");
4) Open the forumcounter.php file find the Display Variable code and copy it so your HTML file can use it.
-Matt