I am writing form mailer-script and I am having problems with multiple checkboxes. If there are several checkboxes of the same name only the last one will be sended. I know that I can avoid this by using names as array (name="name[]"). But that method is not good for me. My script will be in public use so it is impossible to use that method because different users can use different names for checkboxes. One uses 'whatever' and second uses 'something'. Is there any other method(s) to do a list of the values. It has to be something like this in email:
'name: value1, value2, value3'.
I am sorry if my text is not the clearest one, but I don't know how else to tell it.
Thanks!