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_[fieldname]);
?>

Comments

Popular posts from this blog

PHP - How to increase size of POST value in php

D8 KernelEvents constants

D8 - Attach file programmatically to a node