I have multiple classes/groups of checkboxes and each class/group contain multiple checkboxes in it with same name. When form submitted, all checkboxes get reset. I have tried many solutions available on this site but these are not working for group of checkboxes. For example:-
<form method="post" action="" name="SearchForm" >
<input type="checkbox" name="color[]" value="Black">
<input type="checkbox" name="color[]" value="White">
<input type="checkbox" name="color[]" value="Green">
<input type="checkbox" name="language[]" value="Punjabi">
<input type="checkbox" name="language[]" value="Sindhi">
<input type="checkbox" name="language[]" value="Saraiki">
</form>
How can I prevent checkboxes from getting reset after form submitted?