radio_button_tag 'ctrlname', 'apache2.2'
label_tag 'ctrlname_apache2.2', 'Apache 2.2'
It will render like this:
If you try to click the label, it won't select the radio as expected, because the radio id rendering took out the dot, while the label for rendering did not.
HTML for radio:
<input id="ctrlname_apache22" name="ctrlname" type="radio" value="apache2.2" />
HTML for label:
<label for="ctrlname_apache2.2">Apache 2.2</label>