Quote:
Originally Posted by Triky
|
The best solution would be to use a template for your page - to follow one of those articles I linked to. If you are going to just make a basic php page instead of using a template, then you need to do something like this in your php page when you use any vb variables:
HTML Code:
<!-- logged-in users -->
<h1>Logged in Users</h1>
<a href="online.php<?php
echo $session[sessionurl_q];
?>" rel="nofollow"><?php
echo $vbphrase[currently_active_users];
?></a>: <?php
echo $totalonline;
?>
<div><?php
echo $activeusers;
?></div>
<!-- end logged-in users -->