if 문 에서 라디오 버튼 작동좀하게 해주세요 채택완료
이렇게 넣었는데.
작동이 안되서요
선택하고 확인 눌러도 반영이 안되네요
</span></p><p><span style="color: rgb(51, 51, 51); font-family: 돋움, Dotum, sans-serif; font-size: 12px; background-color: rgb(247, 247, 247);">echo " </span><br style="color: rgb(51, 51, 51); font-family: 돋움, Dotum, sans-serif; font-size: 12px;"><span style="color: rgb(51, 51, 51); font-family: 돋움, Dotum, sans-serif; font-size: 12px; background-color: rgb(247, 247, 247);"><input type='radio' name='wr_10' required value='아아' <?if($write[wr_10]=='아아')echo'checked';?>>아아 </span><br style="color: rgb(51, 51, 51); font-family: 돋움, Dotum, sans-serif; font-size: 12px;"><span style="color: rgb(51, 51, 51); font-family: 돋움, Dotum, sans-serif; font-size: 12px; background-color: rgb(247, 247, 247);"><input type='radio' name='wr_10' required value='아아' <?if($write[wr_10]=='아아')echo'checked';?>>아아 </span><br style="color: rgb(51, 51, 51); font-family: 돋움, Dotum, sans-serif; font-size: 12px;"><span style="color: rgb(51, 51, 51); font-family: 돋움, Dotum, sans-serif; font-size: 12px; background-color: rgb(247, 247, 247);">"</span> </p><p><span style="color: rgb(51, 51, 51); font-family: 돋움, Dotum, sans-serif; font-size: 12px; background-color: rgb(247, 247, 247);">
답변 2개
</p><pre><?php
if($bo_table == "w"){
?>
<input type="radio" name="wr_10" value="아아" checked>아아
<input type="radio" name="wr_10" value="아아_아님" <?php if($write[wr_10]=='아아_아님') echo 'checked';?>>아아_아님
<?php } ?></pre><pre>
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인
[code]
<?php
if($bo_table == "w"){
echo "
<input type='radio' name='wr_10' required value='아아' <?if($write[wr_10]=='아아')echo'checked';?>>아아
<input type='radio' name='wr_10' required value='아아' <?if($write[wr_10]=='아아')echo'checked';?>>아아
";
}
?>
[/code]