<input type="radio" id="visa" name="card_type" checked />Visa<br>
<input type="radio" id="mastercard" name="card_type" />MasterCard<br>
<input type="radio" id="discover" name="card_type" />Discover<br>
<?php
$card_type = filter_input(INPUT_POST, 'card_type');
?>
<?php
$card_type = filter_input(INPUT_POST, 'card_type');
if ($card_type == NULL) {
$card_type = 'unknown';
}
?>