쇼핑몰관리자: #70 title label 로 대체 완료

This commit is contained in:
whitedot
2013-04-22 12:02:59 +09:00
parent 3c9cee5113
commit a3ba04f745
15 changed files with 82 additions and 38 deletions

View File

@ -93,8 +93,9 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌
등록된 상품 <?=$total_count ?>건
</span>
<label for="sca" class="sound_only">분류선택</label>
<? // ##### // 웹 접근성 취약 지점 시작 - 지운아빠 2013-04-12 ?>
<select name="sca">
<select name="sca" id="sca">
<option value="">전체분류</option>
<?
$sql1 = " select ca_id, ca_name from {$g4['shop_category_table']} order by ca_id ";
@ -108,13 +109,17 @@ if ($sfl || $stx) // 검색렬일 때만 처음 버튼을 보여줌
?>
</select>
<? // ##### // 웹 접근성 취약 지점 끝 ?>
<select name="sfl">
<label for="sfl" class="sound_only">검색대상</label>
<select name="sfl" id="sfl">
<option value="it_name" <?=get_selected($sfl, 'it_name')?>>상품명</option>
<option value="it_id" <?=get_selected($sfl, 'it_id')?>>상품코드</option>
<option value="it_maker" <?=get_selected($sfl, 'it_maker')?>>제조사</option>
<option value="it_origin" <?=get_selected($sfl, 'it_origin')?>>원산지</option>
<option value="it_sell_email" <?=get_selected($sfl, 'it_sell_email')?>>판매자 e-mail</option>
</select>
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
<input type="text" name="stx" value="<?=$stx?>" required class="frm_input required">
<input type="submit" value="검색" class="btn_submit">
</fieldset>