1:1 문의 게시판 검색
본문
1:1 문의 게시판 검색을 이름으로 검색 가능 하게 바꾸고 싶은데
현재 제목으로만 검색이 되네요.
어디 부분을 수정 하면 될까요?
$list_href = G5_BBS_URL.'/qalist.php';
$write_href = G5_BBS_URL.'/qawrite.php';
$list_pages = preg_replace('/(\.php)(&|&)/i', '$1?', get_paging(G5_IS_MOBILE ? $config['cf_mobile_pages'] : $config['cf_write_pages'], $page, $total_page, './qalist.php'.$qstr.'&page='));
$stx = get_text(stripslashes($stx));
include_once($skin_file);
} else {
echo '<div>'.str_replace(G5_PATH.'/', '', $skin_file).'이 존재하지 않습니다.</div>';
}
include_once('./qatail.php');
?>
답변 1
제목만 검색 되는 것이 아니라 제목, 내용, 분류 검색이 됩니다
검색 부분은 이곳이 아닙니다
위쪽에서 아래 코드를 찾아서 수정
if($stx) {
if (preg_match("/[a-zA-Z]/", $stx))
$sql_search .= " and ( INSTR(LOWER(qa_subject), LOWER('$stx')) > 0 or INSTR(LOWER(qa_content), LOWER('$stx')) > 0 )";
else
$sql_search .= " and ( INSTR(qa_subject, '$stx') > 0 or INSTR(qa_content, '$stx') > 0 ) or qa_name='$stx' "; //<--------- qa_name 추가
}
답변을 작성하시기 전에 로그인 해주세요.