I have two rows of check-boxes. When a user clicks on any individual check-box (in a certain row) I want to add a number to my sum in PHP. If he deselects an individual chec
In checkboxes try onclick="processForm(this)", then, in JavaScript:
onclick="processForm(this)"