|
Posted by Shank on 12/08/06 04:35
I have a form with multiple records.
My intention is to have the user click a checkbox for each product he wants.
If I use a text box like the following and enter a 1 for each product,
submit, no problem.
The user gets the products he wants.
<input name="qty" type="text" value="0">
However, if I use the following checkbox code, and assuming the user checks
4 products half way down the page, he will get the first 4 products in the
recordset. If he clicks 1 checkbox, he will always get the first product,
not the product he chose.
<input name="qty" type="checkbox" value="1">
Back to basics... what is the fundamental differnce between the text box and
checkbox?
I would think they would tally the products the same way.
thanks!
[Back to original message]
|