what do you mean doesn't break?
If im correct in understanding what you mean... you can use mysql to store the data to get the effect you're looking for...
PHP Code:
CREATE TABLE hits (
hitid int(10) unsigned NOT NULL DEFAULT '0',
hitname varchar(30) NOT NULL,
hits int(10) NOT NULL DEFAULT '0',
PRIMARY KEY(hitid)
)
INSERT INTO hits VALUES ('1', 'index', '0')
run those two queries and then open index.php
find:
PHP Code:
eval("dooutput(\"".gettemplate('forumhome')."\");");
above it add:
PHP Code:
$DB_site->query("UPDATE hits SET hits=hits+1 WHERE hitname='index'");
$hits = $DB_site->query_first("SELECT hits FROM hits WHERE hitname='index'");
$hits = $hits['hits'];
then in your forumhome tempate place $hits whereever you want the hits to show... i doubt this is the most effective way but it should do the trick
regards...
g-force2k2