How to Fetch Profile field Values in drupal
We can add additional fields in the user registration form using profile module.
The following code is used to fetch these profile field values anywhere in drupal.
<?php
global $user;
profile_load_profile($user);
print($user->profile_[fieldnam e]);
?>
profile_load_profile($user);
print($user->profile_[fieldnam
?>
Comments