Hello. I have a giant form, an order pad for internal employees, that has hundreds of text fields. The names of the text fields are product codes, the values that are returned are quantities.
Example: <input type = 'text' name='ABC123 Product 1' size='3' maxlength='3'>
I need to collect the data from the order pad and generate an email to the office with the order. How do I parse the incoming form to collect the text field name and value?
I am guessing this will be done via $HTTP_POST_VARS but do not know how to go out and get only the field names and values where something has been input by the user.
Thanks in advance for any and all assistance.