How can I get the submitted user profile fields?

mirowais - April 28, 2008 - 05:47

I am new to drupal, what I am intending to do is I want to get the values of all the fields in user registration form after submission.
I have tried many things but nothing worked for me. I tried to use the hook_user with $op == submit, but nothing was coming out.
Any help will be appreciated.

user_load

kuldip - Gloscon - April 28, 2008 - 07:32

Hi,

you can get all the fields from user by load that user after submission of that user...

like $user_info = user_load(2);

print "";
print_r($user_info);
print "";

--
Kuldip Gohil
Software Engineer - Global Software Consulting (Gloscon)
1-888-DRUPAL-9 (378-7259)
http://www.gloscon.com

 
 

Drupal is a registered trademark of Dries Buytaert.