Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Contact Form Help!! Re: Contact Form Help!!

#57953

You are having problems because you have called all your checkboxes "test" and thus the value of the variable is being overwritten.

If you instead name them "test[]" you will receive a PHP array which contains the values of the selected checkboxes. For example, if the user has marked boxes 2 and 3, you will receive the following array:

$_POST["test"] = Array ( [0] => Test2 [1] => Test3 )