게시판에서 검색 옵션을 끄고 항상 제목/내용으로 검색을 하고 싶은데
Copy
<fieldset id="bo_sch"> <legend>게시물 검색</legend>
<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"> <label for="sfl" class="sound_only">검색대상</label> <select name="sfl" id="sfl"> <option value="wr_subject||wr_content"<?php echo get_selected($sfl, 'wr_subject||wr_content'); ?>>제목+내용</option> </select> <label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label> <input type="text" name="stx" value="<?php echo stripslashes($stx) ?>" required id="stx" class="frm_input required" size="15" maxlength="15"> <input type="submit" value="검색" class="btn_submit"> </form></fieldset>
위와 같이 검색 옵션을 다른것들을 지우면 되긴 합니다만.. 아예 저 검색 옵션 자체를 없애버리고 항상
제목+내용 으로 검색하고 싶습니다.
도와주세요.
|
답변 1개
채택된 답변
+20 포인트
canth
2014-06-27 (금) 16:30:09
Copy
<fieldset id="bo_sch"> <legend>게시물 검색</legend>
<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_subject||wr_content"> <label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label> <input type="text" name="stx" value="<?php echo stripslashes($stx) ?>" required id="stx" class="frm_input required" size="15" maxlength="15"> <input type="submit" value="검색" class="btn_submit"> </form></fieldset>
아깐 분명 똑같이 해도 안됐는데.. 다시 해보니 되네요.. ..
답변을 작성하려면 로그인이 필요합니다.