« September 2007 | Main | November 2007 »

October 25, 2007

Post to your custom data fields with webforms

You can now post webform data to your custom data fields. Simply add another text field or hidden variable and use your custom field name as the name of the field or hidden variable.

For example, if you have a custom field called 'Favorite Food', you can add a text field:

<input type="text" name="Favorite Food" />

or you can do the same thing with a hidden variable:

<input type="hidden" name="Favorite Food" value="Cheeseburger" />