Hi,
I want to get access to multiple checkboxes using PHP, I have found this solution:
<input type="checkbox" name="myvar[]" value="123"> 123
<input type="checkbox" name="myvar[]" value="abc"> abc
<input type="checkbox" name="myvar[]" value="456"> 456
which works fine, the problem is after...