View Full Version : user data
sabret00the
05-15-2004, 11:20 PM
sorry for this, i've lost all confidence and knowledge in matters of coding for the night, so again i'm sorry for bothering you all.
but how would i select the data from the user table and userfield table as an array so i could call some of the data i.e.
Age
Location
Occupation
then some of the custom user profile fields
this is for a page powered by vBulletin but not a standard file (i.e. my own one).
sabret00the
05-15-2004, 11:40 PM
$profile_info = $DB_site->query_first("SELECT (*)
FROM userfield
LEFT JOIN user ON (user.userid = userfield.userid)
$clause");
$DB_site->fetch_array($profile_info)
and then i can just call it in the templates as $profile_info['field14'] right?
i think is the query (still not good with these left joins
and how do i get the age and website/homepage?
sabret00the
05-16-2004, 12:29 PM
*bump*
AN-net
05-16-2004, 05:10 PM
the query looks good for profile fields and to get homepage etc. you have to look in the user table(im using vb3)
sabret00the
05-16-2004, 05:25 PM
i can't even get the query to work in php my admin :(
Xenon
05-16-2004, 05:55 PM
why not just use the fetch_userinfo() function of vb3? :)
sabret00the
05-16-2004, 05:58 PM
cos i didn't know it existed :o
how would i go about using the fetch_userinfo() based on a static userid
i.e. fetch_userinfo(userid = $juserid, field24)?
Xenon
05-16-2004, 06:11 PM
hmm, what i did was something like this when i need it:
$userid = xx;
$userinfo = fetch_userinfo($userid);
sabret00the
05-16-2004, 07:13 PM
sorry to be a pain, just trying to grasp this still
ok so i would apply the above to the file (in php format)
but how would i call the information in the templates?
$userinfo[fieldXX]?
Xenon
05-16-2004, 07:14 PM
exactly like that.
the userinfo looks like the bbuserinfo array :)
sabret00the
05-16-2004, 07:20 PM
see, i'm getting a better grasp of all this
thank you very much stefan :D
Xenon
05-16-2004, 08:24 PM
You're welcome :)
sabret00the
05-16-2004, 08:54 PM
stefan you're a god amongst men :D
Xenon
05-16-2004, 08:58 PM
*ggg*
thx ;)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.