I have a form that includes many checkboxes with the same name but with different values, when the form is submitted I get a single variable that has the name of the checkboxes and it contains a comma separated list values of each checkbox that was checked. All this is OK, however, I have modified the form to disable some of the checked checkboxes which means that we cannot uncheck the checkbox, again this is OK and working. The issue that I have is that disabled checked checkboxes do not have a value when submitted.
Is there another property I can use that will include all checked checkboxes?