I have filled a hidden field in a form using dynamic population. However, the population takes the form of filling in an input as such:
<input name="gform_field_values" value="parameter_name=3" type="hidden">
My question is, how do you access this data after form submission? The only way I've found as of yet is parsing $_POST["gform_field_values"], but I'm sure there is a more standardized way.