사용자: 검색스킨 작업 중
This commit is contained in:
@ -8,14 +8,12 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
<legend>사이트 상세검색</legend>
|
||||
<label for="gr_id">검색대상</label>
|
||||
<?=$group_select?>
|
||||
<label for="view">검색종류</label>
|
||||
<select id="view" name="view" onchange="select_change()">
|
||||
<select id="view" name="view" onchange="select_change()" title="검색종류">
|
||||
<option value="">전체게시물
|
||||
<option value="w">원글만
|
||||
<option value="c">코멘트만
|
||||
</select>
|
||||
<label for="mb_id">회원아이디</label>
|
||||
<input type="text" id="mb_id" name="mb_id" class="fieldset_input" value="<?=$mb_id?>">
|
||||
<input type="text" id="mb_id" name="mb_id" class="fieldset_input" value="<?=$mb_id?>" title="검색어">
|
||||
<input type="submit" class="fieldset_submit" value="검색">
|
||||
<script>
|
||||
function select_change()
|
||||
|
||||
@ -9,7 +9,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
<?=$group_select?>
|
||||
<script>document.getElementById("gr_id").value = "<?=$gr_id?>";</script>
|
||||
|
||||
<select name="sfl">
|
||||
<select name="sfl" title="검색조건">
|
||||
<option value="wr_subject||wr_content">제목+내용</option>
|
||||
<option value="wr_subject">제목</option>
|
||||
<option value="wr_content">내용</option>
|
||||
@ -17,7 +17,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
<option value="wr_name">이름</option>
|
||||
</select>
|
||||
|
||||
<input type="text" name="stx" class="fieldset_input" value="<?=$text_stx?>" maxlength="20" required>
|
||||
<input type="text" name="stx" class="fieldset_input" class="required" value="<?=$text_stx?>" maxlength="20" required title="검색어">
|
||||
|
||||
<input type="submit" class="fieldset_submit" value="검색">
|
||||
|
||||
@ -55,6 +55,7 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
<? if ($stx) { ?>
|
||||
<p>
|
||||
<? if ($board_count) { ?>
|
||||
검색된 게시판 리스트 <?=$board_count?>개의 게시판, <?=number_format($total_count)?>개의 게시글, <?=number_format($page)?>/<?=number_format($total_page)?> 페이지
|
||||
<? } else { ?>
|
||||
<? } ?>
|
||||
</p>
|
||||
@ -64,7 +65,6 @@ if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||
|
||||
<?
|
||||
if ($stx) {
|
||||
echo "검색된 게시판 리스트 (".$board_count."개의 게시판, ".number_format($total_count)."개의 게시글, ".number_format($page)."/".number_format($total_page)." 페이지)";
|
||||
if ($board_count) {
|
||||
?>
|
||||
<ul>
|
||||
@ -109,6 +109,6 @@ for ($idx=$table_index, $k=0; $idx<count($search_table) && $k<$rows; $idx++) {
|
||||
</ul>
|
||||
<? } ?>
|
||||
|
||||
<div id="pg">
|
||||
<div class="pg">
|
||||
<?=$write_pages?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user