Within a php environment we have one checkbox linked to one hidden field with the SAME NAME ($name). How could we send only the values of the selected checkboxes?
php
<input type"checkbox" name="<?echo $filename;?><?echo $variable;?>"
id="filename<?echo $variable;?>" value="1">
<input type="hidden" name="item_<?echo $filename;?>" value="<?echo $quantity;?>">
In the generated html this checkbox with its own hidden file is then repeted several time with different name ($name).
How can we stop the form to send the value of the unchecked hidden inputs? We cannot use different names nor an array. In the next php page we need to get a single value from each hidden input. We cannot use the array "method" as we then need to use only one variable in a second page rather than the whole array. We cannot "GET" one element via its position within the array as such a position is determined by the individual choice of the end user via a checkbox.