well im not sure exactly what is causing my problem but let me start from the begining. i just installed a php counter for my website at http://www.dirtmyonkeys.net/counter/. i got it working fine, but i would like to just include on my website the online users portion of it. as you can see on this page that the online users portion of the counter is working fine. the part of the code that relays that particular bit of information appears to be echo'd. when i try and echo that on a page it doesn't show a number at all.
here is the code for .this page
[html] <p>The count should be below...</p>
<?php require "phpcounter.php"; ?>
<p>The count should be above.</p>
<h2>Currently Online</h2>
<p>The number of users currently online is <?php echo $GLOBALS["CurrentlyOnline"]; ?>.</p>
|