PDA

View Full Version : variables for vb user profile fields on non-vb...


fearfx
03-19-2008, 09:24 PM
What would a variable for a user profile field.

Second is there a way to include on non-vb the newest member? and maybe the member with the most posts?

Thanks.

Opserty
03-19-2008, 10:08 PM
PHP: $vbulletin->userinfo['fieldX']

Template: $bbuserinfo[fieldX]

X being the fieldID interger.

fearfx
03-19-2008, 10:09 PM
Thank you, your are wise as your a swift to responses!

--------------- Added 1205968225 at 1205968225 ---------------

Also, how about the newest registered member on non-vb? and member with most posts?

Would this be hard?

MoT3rror
03-20-2008, 04:58 AM
$newestuser = $db->query_first("SELECT * FROM users ORDER BY joindate DESC LIMIT 1");

echo $newestuser['username'] //username of the newest user

$highestposter = $db->query_first("SELECT * FROM users ORDER BY posts ASC LIMIT 1");

echo $highestposter['username'] //username of the member with the most posts