4images Forum & Community

4images Modifications / Modifikationen => Mods & Plugins (Releases & Support) => Topic started by: beeeeer on June 04, 2011, 03:03:03 PM

Title: [MOD] Simple "how many users do we have" modiffication
Post by: beeeeer on June 04, 2011, 03:03:03 PM
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