Hi,
I've been toying with this a bit. I have a list, generated from database output, of names paired with emails. Along with each name/email tuple I want to have a button which should POST the name + email pairs such that I can deal with them when the page reloads.
Simple enough. The problem I'm running into is the fact that I don't know how many rows of data I will have. Therefore I can't just statically name any of the form items. I've tried, as the data is being outputted from the query, keeping track of what row I'm on and simply appending this to the name + id of the submit form items. However, this doesn't seem to be allowed as the button is not recognized as having been clicked once the page reloads.
How can I get around this? I know this is probably a simplistic issue and I've tried searching, but all that I can find on dynamic forms is not applicable.
Thanks!