vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Pulling custom profile field data from MySQL dbase (https://vborg.vbsupport.ru/showthread.php?t=142985)

TheMusicMan 03-24-2007 06:46 AM

Pulling custom profile field data from MySQL dbase
 
Hi All

Can someone help me with this one please. I am writing some code that needs to grab data from one or more Custom Profile Fields. I need to obtain this profile information from the MySQL database (obviously) and am wondering how I get it.

I see there is a profilefields table that contains details of the actual profile fields (including custom ones), but which table do I query to get at the custom profile data for a member?

Specifically, I want to be able to pull and retrieve data, then sort this data, then present this data across all (or a selection of) my member records.

How do I do this please? I know it's via a

SELECT * from table_name WHERE conditions_here_ ORDER BY etc

But what table do I query to get at the custom profile data items for a member...?

MarkPW 03-24-2007 03:45 PM

This info will retrieve userfield info for member id: 1, using vb's db class.

PHP Code:

$db->query_first("SELECT * FROM " TABLE_PREFIX "userfield WHERE userid=1"); 


TheMusicMan 03-24-2007 03:58 PM

Mark - you are a great help thanks.

Can you elaborate on what the query_first bit means please and also how I then access the Custom Field Data (say in Custom Field1) from the userfield.

MarkPW 03-24-2007 04:18 PM

query_first() executes a data-reading SQL query, returning an array of the data from the first row from the result set.

To access your custom data, you would do:

PHP Code:

$userdata $db->query_first("SELECT * FROM " TABLE_PREFIX "userfield WHERE userid=1");

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

echo  
$userdata['field1']; //and so on 


TheMusicMan 03-24-2007 04:24 PM

WOW - as easy as that eh! (when you know how)

Thanks a million Mark, very much appreciated.


All times are GMT. The time now is 12:12 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.01101 seconds
  • Memory Usage 1,721KB
  • 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
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)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