PDA

View Full Version : Variables available to use...


Python2
12-08-2004, 06:01 PM
Hi,

Can someone please give me a list of the variables which can be used please. For example bbuserinfo[posts] contains the number of posts which the logged in user has made...

Id like to knoe more because I am integrating my forum with my site and wish to display vb variables on my sites pages(which i already have working fine).

Thanks

Dean C
12-08-2004, 06:06 PM
Make a seperate PHP file in your forums root and just require_once global.php like all the other scripts in that dir do. And put this below it:


echo '<pre>';
print_r($bbuserinfo);
echo '</pre>';


Hopefully that'll help you out.

SVTBlackLight01
12-09-2004, 12:11 AM
Nice tip Dean! :)

Python2
12-10-2004, 06:50 PM
thanks for that :)