Hi,
When usinf the list field 2 columns, 1 row both of the input boxes have the same name. How can i target them seperately for use in gform_post_submission?
Thanks.
Hi,
When usinf the list field 2 columns, 1 row both of the input boxes have the same name. How can i target them seperately for use in gform_post_submission?
Thanks.
Hi Squeeze,
Quick crash course on the list fields. :)
Submitting this will give you this (index "6") in the $entry object. Using the unserialize() function on that $entry value (like so) will give you a nice array broken down by column.
Also, as of v1.6 we're officially recommending you use the gform_after_submission for places you would have previously used the gform_post_submission hook. Short story is there were some inconsistencies with how the previous hook was processed. The new hook resolves those issues. :)
Excellent crash course! Thanks.
My pleasure. :)