Thread: php question
View Single Post
  #5  
Old 06-25-2006, 11:08 PM
Scott is offline Scott
Scott's Avatar
AKA. Panther

Join Date: Sep 2001
Location: Minneapolis, MN
Posts: 10,922

Would be easy to tell you if I knew the table structure of ipb.. but I dont and it dosen't look like it's free anymore so i cant check

your query would look something like

<?
$connect=mysql_connect("localhost","mysql_username ","mysql_password");
$db=mysql_select_db("forum_database");

$query=mysql_query("SELECT user_id FROM users_table");
$total_users=mysql_num_rows($query);

Echo("We have a total of ".intval($total_users)." users in our community.");

mysql_free_result($query);
mysql_close($connect);
?>
__________________

04' Dodge SRT-4, Mopar Stage 3, 406whp/436wtq
Reply With Quote