답변 3개
lib/get_data.lib 파일 열어보시면
446번 라인에 있습니다.
function get_board_sfl_select_options($sfl){
global $is_admin;
$str = '';
$str .= '제목';
$str .= '내용';
$str .= '제목+내용';
if ( $is_admin ){
$str .= '회원아이디';
$str .= '회원아이디(코)';
}
$str .= '글쓴이';
$str .= '글쓴이(코)';
return run_replace('get_board_sfl_select_options', $str, $sfl);
}
function get_qa_sfl_select_options($sfl) {
global $is_admin;
$str = '';
$str .= '제목';
$str .= '내용';
$str .= '글쓴이';
if ($is_admin)
$str .= '회원아이디';
return run_replace('get_qa_sfl_select_options', $str, $sfl);
}
![]()
답변에 대한 댓글 1개
댓글을 작성하려면 로그인이 필요합니다.
네 스킨부분에 검색부분이~
<!-- 게시판 검색 시작 { -->
<div class="bo_sch_wrap">
<fieldset class="bo_sch">
<h3>검색</h3>
<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">
<?php echo get_board_sfl_select_options($sfl); ?>
</select>
<label for="stx" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
<div class="sch_bar">
<input type="text" name="stx" value="<?php echo stripslashes($stx) ?>" required id="stx" class="sch_input" size="25" maxlength="20" placeholder=" 검색어를 입력해주세요">
<button type="submit" value="검색" class="sch_btn"><i class="fa fa-search" aria-hidden="true"></i><span class="sound_only">검색</span></button>
</div>
<button type="button" class="bo_sch_cls" title="닫기"><i class="fa fa-times" aria-hidden="true"></i><span class="sound_only">닫기</span></button>
</form>
</fieldset>
<div class="bo_sch_bg"></div>
</div>
이렇게 되어있어서~~ ㅜㅜㅜ
댓글을 작성하려면 로그인이 필요합니다.
댓글을 작성하려면 로그인이 필요합니다.
답변을 작성하려면 로그인이 필요합니다.
로그인