What MvanGeest is suggesting is for you to use javascript to transfer values of the radio buttons to a hidden field in your main page form
so for each radio button you would have onclick="valueSet(this.value)"
and in the function valueSet
(that you define in the iframe) you would set the value of the hidden form field
function valueSet(radioValue){
window.parent.document.forms["nameOfYourForm"].elements["nameOfHiddenElement"].value = radioValue;
}
and in the main window, in the FORM you have
<input type="hidden" name="nameOfHiddenElement" value="" />
ve siz de bunun için varsayılan değer ayarlayabilirsiniz
Form bir isim niteliği vermek ve başvurduğu işlevi bu ismi kullanmayı unutmayın forms["nameOfYourForm"]
Bu proje için mantıklı mı? Yoksa burada tabanından Giydim?