I have a frustrating issue with checkboxes not being set. Meanwhile, the radio selections in the same form function as expected.
For example I have the following input field (corresponding to an article selection in a marketing application)
<input type="checkbox" name="13|18|100.0000"/>
And if I run var_dump ($_POST[‘13|18|100.0000’]); in my application, and having checked the field, the output is; Notice: Undefined index: 13|18|100.0000.
What could be the cause for this?
EDIT:
I should have tried a bit more, var_dumping the POST variable disclosed that the array index is 13|18|100_0000. With an underscore, for whatever reason.