checkbox value 0 or 1
In many cases, I have checkboxes as below
<input type="checkbox" name="custom7" value="1" id="custom7"
checked="checked"> <label for="custom7">Email me more info?</label>
Now when the checkbox is checked the value should be 1 as in value=1 . If
the checkbox is unchecked, I want the value to be zero as in value=0. How
can I do this?
No comments:
Post a Comment