게시판 분류부분 셀렉트박스가 아닌, 라디오 버튼으로 변경
본문
<?php if ($is_category) { ?>
<tr>
<th scope="row">분류</th>
<td>
<!-- 게시판 카테고리 시작 { -->
<select name="sca" id="fsca" class="frm_input">
<option value="">전체</option>
<?
$categories = explode("|", $board['bo_category_list'].($is_admin?"":"")); // 구분자가 | 로 되어 있음
for ($i=0; $i<count($categories); $i++) {
?>
<option value="<?=$categories[$i]?>"><?=$categories[$i]?></option>
<?
}
?>
</select>
<script>$('#fsca').val("<?=$_GET['sca']?>");</script>
<!-- } 게시판 카테고리 끝 -->
</td>
</tr>
<?}?>
게시판 분류부분인데, 이부분을 셀렉트가 아닌, 라디오로 하고싶은데, 변경하려면 참고할만한 자료가 있을까요?
!-->답변 1
<?php if ($is_category) { ?>
<tr>
<th scope="row">분류</th>
<td>
<?
$categories = explode("|", $board['bo_category_list'].($is_admin?"":"")); // 구분자가 | 로 되어 있음
for ($i=0; $i<count($categories); $i++) {
?>
<input type="radio" name="sca" id="sca<?=$i?>" value="<?=$categories[$i]?>" <?if ($_GET['sca'] == $categories[$i]) echo "checked"; ?>>
<label for="sca<?=$i?>"><?=$categories[$i]?></label>
<? } ?>
</td>
</tr>
<?}?>
답변을 작성하시기 전에 로그인 해주세요.