aras20 sadece birisinin seçilebilmesi için name leri aynı olması lazım. bütün nameleri terms yapabilirsin.
Sonra

<script></script>
<script>
$(document).ready(function(){

$('input[type="radio"]').change(function() {
if ($('input[type="radio"]').is(":checked")) {
$("#gonder").removeAttr("disabled");
}
});


});
</script>


bu kod ile hangisi seçilirse gönder butonu aktif olacaktır.