---Solved by changing output to csv
This code:
$height = $cbUser->getField( 'cb_user_height_cm', 'null', 'html', 'null', 'profile');
Will result in the drop down label being stored in $height and not the drop down value. I.E. my drop down shows users the options for their height in feet and inches, but I am actually storing the value in centimeters from the values on drop down. What am I doing wrong that the code above returns the label and not the value? I.E. it returns 4'0" instead of the stored 121.92 (see picture)
Thank you.