Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - beeeeer

Pages: [1]
1
Hi,

i made simple modification.
" Count users "

Create a file count.php and paste code:
Code: [Select]

<?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
Code: [Select]
<?php include "includes/count.php"?>
          </td>

upload it
count.php to catalog includes
and
whos_online.html to templates/your_style

Pages: [1]