बहुत आसानी से:
<input type="radio" name="gender" value="M" <?php echo ($result['gender'] == "M" ? 'checked="checked"': ''); ?> />
<input type="radio" name="gender" value="F" <?php echo ($result['gender'] == "F" ? 'checked="checked"': ''); ?> />
एक चयन बॉक्स के लिए वही बात, विकल्पों को सूचीबद्ध करते समय जांचें और देखें कि उनका संग्रहीत मूल्य value
जैसा ही है या नहीं option
. में से आप सूचीबद्ध कर रहे हैं।