Hello and thanks. have a html form with 1210 checkboxes that define item description, number and price. would like to find a PHP script that reads these values when the checkbox is checked and then creates and displays a pre-filled order form with Item number, description, unit price and adds a text box where the user can select quantity.
each item checkbox data looks like this ...
[code=html]
<input type="checkbox" name="C04001" id="C04001" value=1 descrip="size, color, partnum, weight, class, texture, hardware" item="04001" rice="4.97" onclick="totalC heckboxes(this) ;" readonly>
[/code]
we are totaling checkboxes on page one and may use a form mailer to track interest, but we really need the second page running on our web server.
thanks again for your help.
each item checkbox data looks like this ...
[code=html]
<input type="checkbox" name="C04001" id="C04001" value=1 descrip="size, color, partnum, weight, class, texture, hardware" item="04001" rice="4.97" onclick="totalC heckboxes(this) ;" readonly>
[/code]
we are totaling checkboxes on page one and may use a form mailer to track interest, but we really need the second page running on our web server.
thanks again for your help.
Comment