4images Forum & Community

4images Modifications / Modifikationen => Mods & Plugins (Requests & Discussions) => Topic started by: MR on June 09, 2002, 01:22:43 PM

Title: einige extras
Post by: MR on June 09, 2002, 01:22:43 PM
ich würde gerne:

bei stats noch die anzahl der registrirten user und die anzahl der kommentare sehen.

eine user liste, wo alle user aufgelistet sind wäre auch cool.
Title: einige extras
Post by: Bunny on June 10, 2002, 05:40:18 PM
Code: [Select]

<?php
 define
&#40;'ROOT_PATH', './'&#41;;
 
include&#40;ROOT_PATH.'config.php'&#41;;

 
$dbank mysql_connect&#40;$db_host, $db_user,  $db_password&#41;;
 
if &#40;! $dbank&#41; die&#40; "Keine Verbindung!"&#41;;
 
mysql_select_db&#40;$db_name, $dbank&#41; or die&#40;"Konnte Datenbank nicht öffnen&#58;".mysql_error&#40;&#41;&#41;;

 
$com_sel mysql_query&#40; "SELECT * FROM ".$table_prefix."comments"&#41;;
 
$anzahl mysql_num_rows&#40; $com_sel&#41;;
 
echo $anzahl;

 
mysql_close&#40;$dbank&#41;;
php?>



So könnte man das machen. Aber ich lerne noch PHP und weiß jetzt nit ob das so doll gecodet ist.