1.radio 的 name 必须相同
    <input type="radio" name="which_type" value="img">
    <input type="radio" name="which_type" value="flash">
2.选中时,打印$_POST
Array
(

    [which_type] => img

)

   没选中时,打印$_POST得到:
Array
(
)