hi. I am trying to do a simple checkbox array... I have this in my form:
<input type="checkbox" name="service_array[]" value="faux">
faux finishes<br>
<input type="checkbox" name="service_array[]" value="basic">
basic painting <br>
<input type="checkbox" name="service_array[]" value="highceilings">high ceilings<br>
you get the idea..
and when I am processing the form in thankyou.php ...
it is here that I am mailing the form data to myself and also trying to display the checked boxes in the confirmation page.
Services: $service_array (list of services that were checked)
how do I do this?
I have searched the forums and everyone keeps talking about arrays from dbs etc.
Thanks in Advance!
L