-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuestion_Reply.php
More file actions
64 lines (61 loc) · 1.75 KB
/
Copy pathQuestion_Reply.php
File metadata and controls
64 lines (61 loc) · 1.75 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Question Reply</title>
<style>
@import url(http://fonts.googleapis.com/earlyaccess/nanumgothic.css);
body {
font-family: 'Nanum Gothic', sans-serif;
}
</style>
<script type="text/javascript">
function move(url) {
location.href=url;
}
</script>
</head>
<body>
<table summary="전체 테이블 구성">
<tr>
<td bgcolor="#dcdcdc" height="25" align="center">Reply</td>
</tr>
</table><br>
<table summary= "답변 테이블 구성">
<form name="BoardReplyForm" method="post" action="Question_Reply_action.php">
<input type="hidden" name="qvalue" value="<?php echo $_POST['qvalue']; ?>"/>
<tr>
<td>
<table border="0" width="100%" align="center">
<tr>
<td align="center">Author</td>
<td ><input type="text" name="name" size="10" maxlength="8"></td>
</tr>
<tr>
<td width="10%" align="center">Title</td>
<td width="50%"><input type="text" name="title" size="50" maxlength="30"></td>
</tr>
<tr>
<td width="10%" align="center">Contents</td>
<td><textarea name="content" rows="10" cols="70"></textarea></td>
</tr>
<tr>
<td width="10%" align="center">Password</td>
<td width="70%" ><input type="password" name="password" size="15" maxlength="15"></td>
</tr>
<tr>
<td colspan="2"><hr size="2"></td>
</tr>
<tr>
<td colspan="3" align="center">
<input type="submit" value="Reply Submit" class="btn" >
<input type="button" value="Back" onclick="javascript:history.back()">
</td>
</tr>
</table>
</td>
</tr>
</form>
</table>
</body>
</html>