Need 1 hack please!

id1oT said:
I'v been looking for this for my site for like 2 days and cant find it at all!
http://www.vbulletin.org/forum/showthread.php?t=60019


Please find it and reply please

Using this hack, you can show who is currently on your forums from anywhere else on your website! The page, though, must be a PHP page.

If you want to display this information on another webpage by integrating it (which you'll probably want to ), just put

Code:
<?php require_once("online.php"); ?>
or

Code:
<?php

require_once("online_external.php");

?>
depending on the location of the online.php file

THE BELOW IS ONLY IF YOU ARE USING ONLINE.PHP

If you are using online.php, then this line of code MUST be at the top of the page!

If you don't want to show the total users online at the top of the page, though, then remove
Code:
print $show;
and copy that to wherever you want to show the info instead (remember to surround this with PHP tags, such as:

Code:
<?php

print $show;

?>
THE ABOVE IS ONLY IF YOU ARE USING ONLINE.PHP
 
Back
Top