Hi all
I have the following code:
@profile.update_attributes(params[:xxxx_profile])
where xxxx stands for either male or female. Basically the form submit passes either a set of female_profile[foo]
or a male_profile[foo]
and i want to change it accordingly. Assuming I have a string that can be inserted in lieu of xxxx, how do I dynamically create this symbol?
Thanks.