Quote:
Originally Posted by Mike Cout
Im confused as to how that would work.
Thanks,
-Mike
|
well if you included the forum root global.php file into your file it has a replacement set up that $DB_site->* replaces mysql_*. also by doing this the vbulletin database is alrdy chosen. so basically over all it makes it more intergrated and easier than constantly typing mysql_*
this:
PHP Code:
$query=$DB_site->query("SELECT * FROM table");
$result=$DB_site->fetch_array($query);
is the same as:
PHP Code:
$query=mysql_query("SELECT * FROM table");
$result=mysql_fetch_array($query);