범위 검색 질문 드립니다.
본문
안녕하세요.
현재 아래 소스로 wr_1에 들어 있는 값을 검색하고 있습니다.
이걸 범위를 주어 wr_1에 들어 있는것을 검색하고자 하는데 어떻게 수정을 해야하는지 모르겠습니다.
예를 들어 목록 wr_1에 아래와 같이 숫자가 들어있고 wr_1값이 1200 ~2500 사이에 있는것만 검색하려 합니다.
====목록=======
1. 1000
2. 1200
3. 1500
4. 3000
5. 2400
==== 검색 결과 ====
1. 1200
2. 1500
3. 2400
<form name="fsearch" method="get">
<input type="hidden" name="bo_table" value="<?php echo $bo_table ?>">
<input type="hidden" name="sca" value="<?php echo $sca ?>">
<input type="hidden" name="sop" value="and">
<input type="hidden" name="sfl" value="wr_1"<?php echo get_selected($sfl, 'wr_1'); ?>>
<i class="fa fa-calendar" aria-hidden="true"></i> <input type="text" name="stx" value="<?php echo stripslashes($stx) ?>" required id="stx2" class="sch_input" size="25" maxlength="20" >
<button type="submit" value="검색" class="sch_btn"><i class="fa fa-search" aria-hidden="true"></i><span class="sound_only">검색</span></button>
</form>