new.php가 list.skin.php랑 비슷한거같아서
저 위에 링크에 나와있는 list.skin.php에 나와있는
//////////// 승인 게시판 by 벌이뉨 22.06.29 ////////////////
include_once($board_skin_path.'/confirm.list.head.php');
//////////// 승인 게시판 by 벌이뉨 22.06.29 ////////////////
이것만 옮겨 넣었습니다.
<?php
if (!defined("_GNUBOARD_")) exit; // 개별 페이지 접근 불가
// 선택삭제으로 인해 셀합치기가 가변적으로 변함
$colspan = 5;
//////////// 승인 게시판 by 벌이뉨 22.06.29 ////////////////
include_once($board_skin_path.'/confirm.list.head.php');
//////////// 승인 게시판 by 벌이뉨 22.06.29 ////////////////
if ($is_admin) $colspan++;
// add_stylesheet('css 구문', 출력순서); 숫자가 작을 수록 먼저 출력됨
add_stylesheet('<link rel="stylesheet" href="'.$new_skin_url.'/style.css">', 0);
?>
<!-- 전체게시물 검색 시작 { -->
<fieldset id="new_sch">
<legend>상세검색</legend>
<form name="fnew" method="get">
<?php echo $group_select ?>
<label for="view" class="sound_only">검색대상</label>
<select name="view" id="view">
<option value="">전체게시물
<option value="w">원글만
<option value="c">코멘트만
</select>
<label for="mb_id" class="sound_only">검색어<strong class="sound_only"> 필수</strong></label>
<input type="text" name="mb_id" value="<?php echo $mb_id ?>" id="mb_id" required class="frm_input" size="40">
<button type="submit" class="btn_submit"><i class="fa fa-search" aria-hidden="true"></i> 검색</button>
<p>회원 아이디만 검색 가능</p>
</form>
<script>
/* 셀렉트 박스에서 자동 이동 해제
function select_change()
{
document.fnew.submit();
}
*/
document.getElementById("gr_id").value = "<?php echo $gr_id ?>";
document.getElementById("view").value = "<?php echo $view ?>";
</script>
</fieldset>
<!-- } 전체게시물 검색 끝 -->
요런식으로요 소스는 가장 기본적인 new.php입니다.