forked from osohyun0224/NaverConnect_SW_Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
write.php
75 lines (71 loc) · 1.76 KB
/
write.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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>게시판</title>
<style>
#board_write {
width:900px;
position:relative;
margin:0 auto;
}
#write_area {
margin-top:70px;
font-size:14px;
}
#in_title {
margin-top:30px;
}
#in_title textarea {
font-weight:bold;
font-size:26px;
color:#333;
width: 900px;
border:none;
resize: none;
}
.wi_line {
border:solid 1px lightgray;
margin-top:10px;
}
#in_content {
margin-top:10px;
}
#in_content textarea {
font:14px;
color:#333;
width: 900px;
height: 400px;
resize: none;
}
.bt_se {
margin-top:20px;
text-align:center;
}
.bt_se button {
width:100px;
height:30px;
}
</style>
</head>
<body>
<?$board_id=$_GET['board_id'];?>
<div id="board_write">
<h4>글을 작성하는 공간입니다.</h4>
<div id="write_area">
<form enctype="multipart/form-data" action="write_ok.php?board_id=<?echo $board_id;?>" method="post">
<div id="in_title">
<textarea name="title" id="utitle" rows="1" cols="55" placeholder="제목" maxlength="100" required></textarea>
</div>
<div class="wi_line"></div>
<div id="in_content">
<textarea name="content" id="ucontent" placeholder="내용" required></textarea>
</div>
<input type="file" name="SelectFile" />
<div class="bt_se">
<button type="submit">글 작성</button>
</div>
</form>
</div>
</div>
</body>
</html>