I have a form that I can process with PHP to display the output but how do you display only the checked replys?
IE you have form:
<input type="checkbox" name="C1" value="fred"><input type="checkbox" name="C2" value="joe">
radio buttons and drop down forms are easy to deal with, but if you have multiple options such as a check box how do you deal with the replys such that if C1 is checked it displays fred and if C2 is checked it dispays joe and if both are checked it dispays fred, joe.
Thanks,
Adam