사용자: 최근게시물 검색 위로
This commit is contained in:
@ -2,6 +2,30 @@
|
|||||||
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
|
||||||
?>
|
?>
|
||||||
|
|
||||||
|
<!-- 검색 -->
|
||||||
|
<form name="fnew" method="get">
|
||||||
|
<fieldset>
|
||||||
|
<legend>상세검색</legend>
|
||||||
|
<?=$group_select?>
|
||||||
|
<select id="view" name="view" onchange="select_change()" title="검색종류">
|
||||||
|
<option value="">전체게시물
|
||||||
|
<option value="w">원글만
|
||||||
|
<option value="c">코멘트만
|
||||||
|
</select>
|
||||||
|
<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()
|
||||||
|
{
|
||||||
|
document.fnew.submit();
|
||||||
|
}
|
||||||
|
document.getElementById("gr_id").value = "<?=$gr_id?>";
|
||||||
|
document.getElementById("view").value = "<?=$view?>";
|
||||||
|
</script>
|
||||||
|
</fieldset>
|
||||||
|
</form>
|
||||||
|
<!-- 검색 끝 -->
|
||||||
|
|
||||||
<!-- 제목 시작 -->
|
<!-- 제목 시작 -->
|
||||||
<table>
|
<table>
|
||||||
<thead>
|
<thead>
|
||||||
@ -39,27 +63,3 @@ for ($i=0; $i<count($list); $i++)
|
|||||||
<div class="pg">
|
<div class="pg">
|
||||||
<?=$write_pages?>
|
<?=$write_pages?>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 검색 -->
|
|
||||||
<form name="fnew" method="get">
|
|
||||||
<fieldset>
|
|
||||||
<legend>상세검색</legend>
|
|
||||||
<?=$group_select?>
|
|
||||||
<select id="view" name="view" onchange="select_change()" title="검색종류">
|
|
||||||
<option value="">전체게시물
|
|
||||||
<option value="w">원글만
|
|
||||||
<option value="c">코멘트만
|
|
||||||
</select>
|
|
||||||
<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()
|
|
||||||
{
|
|
||||||
document.fnew.submit();
|
|
||||||
}
|
|
||||||
document.getElementById("gr_id").value = "<?=$gr_id?>";
|
|
||||||
document.getElementById("view").value = "<?=$view?>";
|
|
||||||
</script>
|
|
||||||
</fieldset>
|
|
||||||
</form>
|
|
||||||
<!-- 검색 끝 -->
|
|
||||||
|
|||||||
Reference in New Issue
Block a user