Log in

View Full Version : Pull user details into new PHP page


conaero
04-20-2012, 08:09 AM
We are creating a classifieds section in VB4 and created a PHP page and a template to go with it, and we require help with getting the user details onto this new php page as a variable.

We are fully versed in PHP, we just need to know where to look for these details.

Your help is very much appreciated as we are a bit stuck.

kh99
04-20-2012, 08:41 AM
You just need to include global.php. But the current directory needs to be the vb directory before you include global.php, so if your page is in another directory, you'd need something like:

$savedir = getcwd();
chdir('/path/to/vb/dir');
require_once('./global.php');
chdir($savedir);


Once you do that, the user information will be in $vbulletin->userinfo[] (assuming the user is logged in).

conaero
04-20-2012, 09:14 AM
Thanks mate, the coder seemed to nod when he read it so we will give it a whirl.