Setting HTML Checkbox and HTML Radio Button Defaults

Share this article

If you’ve been coding on the web for more than a few minutes, you’ll have used a form or two with checkboxes and radio buttons. Consider the following code:

<form action="." method="post">
<label><input name="mycheckbox" type="checkbox" value="1" /> checkbox</label>
<label><input name="myradio" type="radio" value="1" /> radio 1</label>
<label><input name="myradio" type="radio" value="2" /> radio 2</label>
<button type="submit">Submit</button>
</form>

<!-- output -->
<p>Value of mycheckbox: <?php echo $_POST['mycheckbox']; ?></p>
<p>Value of myradio: <?php echo $_POST['myradio']; ?></p>
What value is shown for mycheckbox and myradio when you hit Submit without checking any box? The answer: an error is raised. It would depend on your PHP settings but, assuming strict error reporting is enabled, you’ll see “Notice: Undefined index” for both fields. When a checkbox is unchecked or no radio button is selected, nothing is sent for those fields in the HTTP POST. Unlike other input boxes, there’s no default value — the POSTed field simply doesn’t exist. To make it work correctly, you need to check its existence on the server, e.g.
<?php
$mycheckbox = isset($_POST['mycheckbox']);
$myradio = (isset($_POST['myradio']) ? (int) $_POST['myradio'] : 0);
?>
This is fine presuming you know what fields to expect in a form. However, if the form itself was generated in some way, you couldn’t determine what fields it contained by looking at the POSTed values. I never questioned this state of affairs until Andy Kirk commented on my recent article How to Create a Toggle Switch in CSS3. He produced an example which used hidden form values with the same name as the checkboxes and radio buttons to set a default (unchecked) value, e.g.
<input name="mycheckbox" type="hidden" value="0" />
<label><input name="mycheckbox" type="checkbox" value="1" /> checkbox</label>
<input name="myradio" type="hidden" value="0" />
<label><input name="myradio" type="radio" value="1" /> radio 1</label>
<label><input name="myradio" type="radio" value="2" /> radio 2</label>
Therefore, values for mycheckbox and myradio are always posted regardless. Andy discovered it within the PHP Zend framework and used it ever since. I’m embarrassed to admit I’d never seen the trick before or worked it out for myself.

A Good Solution?

The hidden field default trick is simple although it makes me slightly uncomfortable. You’re adding unnecessary elements to an HTML page and data to the HTTP POST to solve a server-specific problem. As an alternative, you could use JavaScript to locate all checkboxes and radio buttons then create the hidden fields but, if that code failed or was disabled, it could cause server issues. My suggestion: if you know what fields a form contains, you don’t require hidden fields to set defaults. However, on those rare occasions you need a generic parser which can analyze any form, it’s a reasonable solution to a quirky problem. This may not be a fancy HTML5 tutorial, but it’s a great tip. Thanks Andy — you’ve taught an old dog a new trick! And if you enjoyed reading this post, you’ll love Learnable; the place to learn fresh skills and techniques from the masters. Members get instant access to all of SitePoint’s ebooks and interactive online courses, like HTML5 & CSS3 For the Real World. Comments on this article are closed. Have a question about HTML? Why not ask it on our forums?

Frequently Asked Questions (FAQs) about HTML Checkbox and Radio Button Defaults

How can I set a default value for an unchecked checkbox in HTML?

In HTML, a checkbox doesn’t have a default value for the unchecked state. When a checkbox is unchecked, no value is sent with the form data upon submission. However, you can use JavaScript or a server-side language like PHP to handle this. For instance, you can use JavaScript to check if the checkbox was submitted. If it wasn’t, you can set a default value.

How can I make a checkbox unchecked by default?

By default, checkboxes are unchecked in HTML. You don’t need to do anything special to make a checkbox unchecked. However, if you want to ensure it’s unchecked even if the user has previously selected it, you can use the ‘checked’ attribute with a value of ‘false’.

How can I set a default value for a radio button in HTML?

To set a default value for a radio button, you can use the ‘checked’ attribute. This attribute can be added to the input element of the radio button that you want to be selected by default. For example, <input type="radio" name="gender" value="male" checked> Male.

How can I make a radio button unchecked by default?

By default, all radio buttons are unchecked. However, if you want to ensure a radio button is unchecked even if the user has previously selected it, you can use JavaScript to reset the form or the specific radio button when the page loads.

How can I handle form submission when a checkbox is unchecked?

When a checkbox is unchecked, no value is sent with the form data upon submission. You can use JavaScript or a server-side language to check if the checkbox was submitted. If it wasn’t, you can handle it accordingly, such as setting a default value or showing a message to the user.

How can I handle form submission when a radio button is unchecked?

If all radio buttons in a group are unchecked, no value is sent with the form data upon submission. You can use JavaScript or a server-side language to check if any radio button was selected. If none was selected, you can handle it accordingly, such as setting a default value or showing a message to the user.

Can I set multiple checkboxes to be checked by default?

Yes, you can set multiple checkboxes to be checked by default. Just add the ‘checked’ attribute to each checkbox input element that you want to be checked by default.

Can I set multiple radio buttons to be checked by default?

No, you can’t set multiple radio buttons in the same group to be checked by default. In a group of radio buttons, only one can be selected at a time. If you add the ‘checked’ attribute to multiple radio buttons in the same group, only the last one will be checked.

How can I change the default value of a checkbox or radio button dynamically?

You can use JavaScript to change the default value of a checkbox or radio button dynamically. You can select the checkbox or radio button using its ID or class, and then use the ‘checked’ property to set its default value.

How can I style the default state of a checkbox or radio button?

You can use CSS to style the default state of a checkbox or radio button. However, the styling options are limited due to the way browsers render these input elements. For more advanced styling, you can use JavaScript and CSS together to create custom checkboxes or radio buttons.

Craig BucklerCraig Buckler
View Author

Craig is a freelance UK web consultant who built his first page for IE2.0 in 1995. Since that time he's been advocating standards, accessibility, and best-practice HTML5 techniques. He's created enterprise specifications, websites and online applications for companies and organisations including the UK Parliament, the European Parliament, the Department of Energy & Climate Change, Microsoft, and more. He's written more than 1,000 articles for SitePoint and you can find him @craigbuckler.

FormshtmlHTML5 Dev Center
Share this article
Read Next
Get the freshest news and resources for developers, designers and digital creators in your inbox each week