so I am forming some checkboxes in a php loop ( i am not showing the loop, but it is in a loop). I need to be able to have multiple check box rows with multiple values. I am doing a customer tracking system. I need each check box to hold the Customer First, Last, and Memberid. How can I do this using php? I would prefer not to have to loop through an array, so if there is a way not to do that, it would be great!
<input type="radio" name="CheckboxGroup" value="yes" id="CheckboxGroup1_0<?php echo $id; ?>"><input name="first" type="hidden" value="<?php echo $first; ?>"><input name="last" type="hidden" value="<?php echo $last; ?>"><input name="member" type="hidden" value="<?php echo $id; ?>">












