forked from estanie/dbproject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
view.jsp
201 lines (195 loc) · 7.09 KB
/
view.jsp
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
<%@ page contentType="text/html; charset=UTF-8" %>
<%@ page import="java.sql.*" %>
<%@ page import="java.util.Date" %>
<html>
<head>
<title>게시판</title>
</head>
<body>
<%@ include file="top.jsp" %>
<%@ include file="dbconfig.jsp" %>
<%
if (session_id == null)
{
%>
<script>
alert("로그인이 필요합니다.");
location.href = "login.jsp";
</script>
<%
}
else{
Statement stmt = null;
stmt = myConn.createStatement();
int idx = Integer.parseInt(request.getParameter("idx"));
String sql = "SELECT b_name, b_title, b_content, b_hit FROM board WHERE b_no=" + idx;
ResultSet rs = stmt.executeQuery(sql);
if(rs.next()){
String name = rs.getString(1);
String title = rs.getString(2);
String memo = rs.getString(3);
int hit = rs.getInt(4);
hit++;
%>
<div id="containerwrap">
<div id="container">
<div class="section_title">
<h1>
<span>글 내용보기</span>
</h1>
</div>
<div id="content" class="myPoint">
<center>
<div class="pointBox">
<table>
<tr>
<td>
<table width="100%" cellpadding="0" cellspacing="0" border="0">
<tr
style="background: url('image/table_mid.gif') repeat-x; text-align: center;">
<td width="5"><img src="image/table_left.gif" width="5"
height="30"/></td>
<td>내 용</td>
<td width="5"><img src="image/table_right.gif" width="5"
height="30"/></td>
</tr>
</table>
<table width="413">
<tr>
<td width="0"> </td>
<td align="center" width="76">글번호</td>
<td width="319"><%=idx%>
</td>
<td width="0"> </td>
</tr>
<tr height="1" bgcolor="#dddddd">
<td colspan="4" width="407"></td>
</tr>
<tr>
<td width="0"> </td>
<td align="center" width="76">조회수</td>
<td width="319"><%=hit%>
</td>
<td width="0"> </td>
</tr>
<tr height="1" bgcolor="#dddddd">
<td colspan="4" width="407"></td>
</tr>
<tr>
<td width="0"> </td>
<td align="center" width="76">이름</td>
<td width="319"><%=name%>
</td>
<td width="0"> </td>
</tr>
<tr height="1" bgcolor="#dddddd">
<td colspan="4" width="407"></td>
</tr>
<tr>
<td width="0"> </td>
<td align="center" width="76">제목</td>
<td width="319"><%=title%>
</td>
<td width="0"> </td>
</tr>
<tr height="1" bgcolor="#dddddd">
<td colspan="4" width="407"></td>
</tr>
<tr>
<td width="0"></td>
<td width="399" colspan="2" height="200"><%=memo %>
</tr>
<%
sql = "UPDATE board SET b_hit=" + hit + " where b_no=" + idx;
stmt.executeUpdate(sql);
}
%>
<tr height="1" bgcolor="#dddddd">
<td colspan="4" width="407"></td>
</tr>
<tr height="1" bgcolor="#82B5DF">
<td colspan="4" width="407"></td>
</tr>
<tr align="center">
<td width="0"> </td>
<td colspan="2" width="399"><input type=button
value="글쓰기" OnClick="window.location='write.jsp'"> <input
type=button value="목록" OnClick="window.location='list.jsp'">
<input type=button value="수정"
OnClick="window.location='modify.jsp?idx=<%=idx%>'">
<input type=button value="삭제"
OnClick="window.location='delete_board.jsp?idx=<%=idx%>'">
<td width="0"> </td>
</tr>
</table>
<div>
<br/> <br/>
</div>
</td>
</tr>
<%
int total = 0;
String sqlList = "SELECT comment_id, comment_content from commenttable where comment_ref=" + idx;
rs = stmt.executeQuery(sqlList);
%>
<table align="center" width="413" border="0" cellspacing="0"
cellpadding="0">
<tr>
<td align="center" width="73">이름</td>
<td align="center" width="379">내용</td>
</tr>
<%
if (rs != null) {
while (rs.next()) {
String name = rs.getString(1);
String title = rs.getString(2);
%>
<tr>
<td align="center"><%=name %>
</td>
<td align="center"><%=title %>
</td>
</tr>
<%
}
}
%>
</table>
<br/>
<br/>
<form name="ff" id="ff" method="post"
action="commentwrite_ok.jsp">
<table align="center" width="630" border="0" cellspacing="0"
cellpadding="0">
<tr>
<td align="center">
<input type="hidden" name="boardNo" value="<%=idx %>">
<input name="writer" type="text" size="20" maxlength="10">
<input name="content" type="text" size="40" maxlength="300">
<a href="javascript:comAdd();"><input name="content" type="button" value="등록하기" size="40"
maxlength="300"></a>
</td>
</tr>
</table>
</form>
<script type="text/javascript">
function comAdd() {
document.getElementById("ff").submit();
}
</script>
<script type="text/javascript">
function comAdd() {
document.getElementById("ff").submit();
}
</script>
</table>
</div>
</center>
</div>
</div>
</div>
<% rs.close();
stmt.close();
myConn.close();
} %>
<%@ include file="footer.jsp" %>