-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqna.php
106 lines (77 loc) · 2.59 KB
/
qna.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
<?php
$code_page='fourth';
include "./head.php";
?>
<div class="notice_cont">
<h2 class="sub_tit">1:1<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%">답변유무</th>
<th width="12%" scope="col">작성자</th>
<th width="12%" scope="col">작성일</th>
<th width="10%" scope="col">조회</th>
</tr>
</thead>
<tbody>
<tr>
<td class="no" colspan="6">No Data</td>
</tr>
<!-- <tr onclick="javascript:board_view('')" style="cursor:pointer">
<td class="no"></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"></td>
<td class="name"></td>
<td class="wdate"></td>
<td class="count"></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 name="searchkey" type="text" class="search_input" value="">
<input type="submit" value="검색" align="absmiddle" title="검색" class="btn_b_s">
</fieldset>
<!-- 검색 끝 -->
<!-- 버튼 -->
<div class="bbs_btn">
<ul>
<li class="list_btn">
<a href="javascript:board_list();" class="btn_w">리스트</a>
<!-- <a href="qna_write.php" class="btn_b">글쓰기</a> -->
</li>
</ul>
</div>
<!-- 버튼 끝 -->
</div>
</form>
<? include "./foot.php"; ?>