I'm not able to see in the SQL database where the data gets stored from the custom fields. Specifically, I want to write php/sql code to retrieve data from one of the fields. Can anyone help me in this regard? Thanks!
Is this for content or database manipulation? Try this: session_start(); $user = $_SESSION['_amember_user']; $user[custom_field_id] David
For both .. one purpose would be to generate a list of all the responses another one would be for database manipulation. i'll try that .. just trying to figure out where in the database the values get stored.
The fields are actually in BLOB type in the members field. My question is.. how to pull out data from BLOB fields (i.e. "do_you_like_this_site) for which input is either yes/no and make a code that says "if field = yes, then ..."