Consider
<input type="checkbox" name="hello" value="world">
If this checkbox is checked and submitted under the POST method, $POST['hello'] would be set and contain the string 'world'
Else $POST['hello'] would not be set.
The same applies to radio buttons, and indeed to most form controls.