PDA

View Full Version : Getting Data from vb Database


tsptom
09-16-2006, 11:59 PM
On the homepage of my website (not the forum), I list the total number of board members I have. I currently have this hard coded and have been updating this manually each night. Does anyone have any code (html or php) that would automate this - like connect to the vb database and do a Select count(*) from user, and display it?

I'm not sure how to do it.

Thanks

nico_swd
09-19-2006, 01:14 PM
include('./forum_path/global.php');

$query = $db->query("SELECT COUNT(*) AS total FROM ". TABLE_PREFIX ."user");
$users = $db->fetch_array($query);

echo 'Total users: '. $users['total'];

grazianno
09-19-2006, 02:16 PM
thx nico_swd

tsptom
09-19-2006, 05:07 PM
Yes, thank you! I'll give that a shot.

nico_swd
09-19-2006, 06:23 PM
Note that this code would mess up the "who's online" page since the page where you're gonna put it in is not defined. You can add these lines before including the global.php file to avoid that.


define('THIS_SCRIPT', basename($_SERVER['PHP_SELF'], '.php'));
define('LOCATION_BYPASS', 1);