-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotice.php
111 lines (78 loc) · 2.7 KB
/
notice.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<?php
$code_page='third';
include "./head.php";
?>
<div class="notice_cont">
<h2 class="sub_tit">공지<span class="po_b">사항</span></h2>
<!-- 게시물 시작 -->
<table class="bbs_con" summary="게시물 목록">
<caption class="hide">게시물 목록</caption>
<thead>
<tr>
<th width="10%" scope="col">번호</th>
<th scope="col">제목</th>
<th width="12%" scope="col">팝업표시</th>
<th width="12%" scope="col">작성자</th>
<th width="12%" scope="col">작성일</th>
<th width="10%" scope="col">조회</th>
</tr>
</thead>
<tfoot></tfoot>
<tbody>
<!-- <tr>
<td class="no" colspan="6">No Data</td>
</tr> -->
<tr onclick="location.href='notice_view.php'" style="cursor:pointer">
<td class="no">1</td>
<td class="left">
<div class="t_overflow">
<div class="t_overflow_space">
<p class="t_value_text">공지사항 테스트입니다.</p>
</div>
</div>
</td>
<td class="name">N</td>
<td class="name">ADMIN</td>
<td class="wdate">2020-08-30</td>
<td class="count">5</td>
</tr>
</tbody>
</table>
<!-- 게시물 끝 -->
<!-- 페이지 번호 -->
<div class="page_num">
<ul class="pagination">
<li><a href="javascript:page_move('1');"><<</a></li>
<li class="mobile_no"><a href="javascript:page_pre();"><</a></li>
<li><a href="javascript:;" class="active">1</a></li>
<!-- <li><a href="javascript:page_move('<?php echo $sj; ?>');"><?php echo $sj; ?></a></li> -->
<li class="mobile_no"><a href="javascript:page_next();">></a></li>
<li><a href="javascript:page_move('<?php echo $si; ?>');">>></a></li>
</ul>
</div>
<!-- 페이지 번호끝 -->
<!-- 검색 -->
<fieldset class="board_search">
<input type="hidden" name="code" value="news">
<input type="hidden" name="category" value="">
<label for="SearchCriteria" class="hide">검색조건 선택</label>
<select name="searchopt" class="select2" style="width:130px;">
<option value="subcon">제목 + 내용</option>
</select>
<input id="shn" name="shn" type="text" class="search_input" value="<?php echo $shn;?>">
<input type="button" value="검색" align="absmiddle" title="검색" class="btn_b_s" onclick="javascript:board_list();">
</fieldset>
<!-- 검색 끝 -->
<!-- 버튼 -->
<div class="bbs_btn">
<ul>
<li class="list_btn">
<a href="#" class="btn_w">리스트</a>
<a href="notice_view.php" class="btn_b">글쓰기</a>
</li>
</ul>
</div>
<!-- 버튼 끝 -->
</div>
</form>
<? include "./foot.php"; ?>