theprof, if you
just want a head count and none of the cool stuff Ed mentioned...
Open index.php and go to line 139 - find this:
Code:
$numberinvisible=$numberregistered-$numbervisible;
eval("\$loggedinusers = \"".gettemplate("loggedinusers")."\";");
}
and add
Code:
$headcount=$numberguest+$numberregistered;
in between the $numberinvisible and eval lines. Then call $headcount from whatever template you want it displayed in.
[Edited by leah r on 06-10-2000 at 06:57 AM]