Dynamic input fields...
Hi all
I've got the following question:
Assume I have a file called form.cfm which contains a form where certain input fields (input type=text) are generated dynamically from a query. More specifically I loop through my query and generate these input fields. For naming of each field I use a result ID out of my query. I looks about this way:
<cfloop>
<inpt type="text" name="#part_ID#" value="">
</cfloop>
After I try processing the form mentioned above resp. passing the form values to a file called result.cfm. There I do not understand how to get the dynamically created variables and its values!
I made a <cfdump> for the form and everything was shown fine in a struct, but I do not have any clue how to represent the struct result on a web page.
This question is most probably very basic!?
Many thanks for inputs
Kind regards
