get_customfield_value
Usage: mixed get_customfield_value(int fieldid[, int memberid])
Purpose: Get's the value of a user's custom profile field.
Availability: IPB SDK 0.3
Purpose: Get's the value of a user's custom profile field.
Availability: IPB SDK 0.3
Returns the value of member memberid's custom profile field fieldid. If memberid is not specified, information for the current user will be returned.
If the Custom Profile Field does not exist, or information cannot be retrieved FALSE will be returned.
/* Display Current User's Custom Profile Field 1 */
echo $SDK->get_customfield_value("1");
/* Display User 4's Custom Profile Field 5 */
echo $SDK->get_customfield_value("5", "4");
/* Display Cow's Custom Profile Field 3 */
echo $SDK->get_customfield_value("3", $SDK->name2id("Cow"));
echo $SDK->get_customfield_value("1");
/* Display User 4's Custom Profile Field 5 */
echo $SDK->get_customfield_value("5", "4");
/* Display Cow's Custom Profile Field 3 */
echo $SDK->get_customfield_value("3", $SDK->name2id("Cow"));
User Contributed Notes
Documentation Generated at Sat, 16 Apr 2005 07:36:35 -0700
Find the latest version at http://ipbsdk.sourceforge.net
There are currently no user contributed notes for this page.