sms5 코드 체크 및 수정

This commit is contained in:
chicpro
2014-04-15 15:12:55 +09:00
parent b6bfef3b65
commit a50f7ce802
13 changed files with 57 additions and 58 deletions

View File

@ -137,18 +137,18 @@ while ($res = sql_fetch_array($qry)) array_push($group, $res);
<label for="bg_no" class="sound_only">그룹</label>
<select name="bg_no" id="bg_no">
<option value="" <?php echo $bg_no?'':'selected'?>> 전체 </option>
<option value="1" <?php echo $bg_no=='1'?'selected':''?>> <?php echo $no_group['bg_name']?> (<?php echo number_format($no_group['bg_receipt'])?> 명) </option>
<option value=""<?php echo get_selected('', $bg_no); ?>> 전체 </option>
<option value="1"<?php echo get_selected(1, $bg_no); ?>> <?php echo $no_group['bg_name']?> (<?php echo number_format($no_group['bg_receipt'])?> 명) </option>
<?php for($i=0; $i<count($group); $i++) {?>
<option value="<?php echo $group[$i]['bg_no']?>" <?php echo ($bg_no==$group[$i]['bg_no'])?'selected':''?>> <?php echo $group[$i]['bg_name']?> (<?php echo number_format($group[$i]['bg_receipt'])?> 명) </option>
<option value="<?php echo $group[$i]['bg_no']?>" <?php echo get_selected($bg_no, $group[$i]['bg_no']); ?>> <?php echo $group[$i]['bg_name']?> (<?php echo number_format($group[$i]['bg_receipt'])?> 명) </option>
<?php } ?>
</select>
<label for="stt" class="sound_only">검색대상</label>
<select name="st" id="stt">
<option value="all" <?php echo $st=='all'?'selected':''?>>이름 + 번호</option>
<option value="name" <?php echo $st=='name'?'selected':''?>>이름</option>
<option value="hp" <?php echo $st=='hp'?'selected':''?>>번호</option>
<option value="all"<?php echo get_selected('all', $st); ?>>이름 + 번호</option>
<option value="name"<?php echo get_selected('name', $st); ?>>이름</option>
<option value="hp"<?php echo get_selected('hp', $st); ?>>번호</option>
</select>
<label for="svv" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>