私は2つのラジオボタンを持っています
<input type="radio" name="fangspotted" value="yes"> YES
<input type="radio" name="testRadio" value="no"> NO
POST値を取得するための私のPHPコードは次のとおりです
$fang_spotted=$_POST['fangspotted'];
"INSERT INTO TABLE1(coulmn) VALUES ('" .$fang_spotted. "')";
ラジオボタンから「はい」オプションを選択するとエラーが発生しますが、「いいえ」オプションを選択すると「いいえ」が表示されます