vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Fetch Additional information from profile on external page (https://vborg.vbsupport.ru/showthread.php?t=148239)

jap 05-27-2007 03:10 PM

Fetch Additional information from profile on external page
 
Hi,

How do I fetch additional information from a user by using the user id? Fetching the username etc is not a problem... but I can't figure out how the additional fields system work...

Is there a mod for this or can anyone explain me how I can fetch this data and/or build the SQL?

Thanks
Jasper

jap 05-28-2007 07:16 PM

Any help would be VERY welcome... thanks :)

S2KingKtulu 05-29-2007 03:47 PM

The signed in user info can be accessed by using
PHP Code:

$bbuserinfo[] 

within a template.
The signed in user info can be accessed in the php file by
PHP Code:

$vbulletin->userinfo[] 

view all the user info with
PHP Code:

print_r($vbulletin->userinfo); 

in your php file. All the keys with that object are there. IE. the userid is $bbuserinfo[userid] or $vbulletin->userinfo[userid];

i pass an
PHP Code:

$post[userid

(userid from a post) via a GET request in the URL and use
PHP Code:

$tid fetch_userinfo($_GET[id]); 

to get that users information in the target php file. this is identicle in structure to the $vbulletin->userinfo object.


if you are just looking to add the additional profile fields to a template then
PHP Code:

$post[field#]  or $bbuserinfo[field#] 

are what you need to add. Remember: $post is the posters data. and $bbuserinfo is the logged in user.


All times are GMT. The time now is 09:28 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00963 seconds
  • Memory Usage 1,719KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete