I am attempting to get information from an HTML form to a PHP script. The catch is that I need to be able to add/subtract rows from the form, and dynamically adjust the data received by the PHP form. Each row of the form has only one text box for data.
For example, I need to enter three users in the form. One row is displayed by default. I'll hit the "add row" button twice, so three boxes are there, then I'll enter User 1, User 2, and User 3. All three names need to be passed to the PHP form, which parses all 3 names and does its thing.
I can probably come up with the PHP logic (although any help would be appreciated), but I don't know how to dynamically post the HTML form to the PHP script or how to add/subtract rows from the form itself.