Hi,
i made simple modification.
" Count users "
Create a file count.php and paste code:
<?php
$link = mysql_connect ('localhost','database_username','database_password');
mysql_select_db('database', $link);
$result = mysql_query('SELECT * FROM 4images_users', $link);
$num_rows = mysql_num_rows($result) -2;
echo "We have $num_rows registered users\n";
?>
step2:
open whos_online.html and paste
<?php include "includes/count.php"; ?>
</td>
upload it
count.php to catalog includes
and
whos_online.html to templates/your_style