-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog_post_process.php
248 lines (148 loc) · 3.19 KB
/
blog_post_process.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
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<?php
ob_start();
// include header.php file
include ('header.php');
?>
<?php
$blogTitle = $_POST["blogtitle"];
$blogDate = $_POST["blogdate"];
$blogPara = $_POST["blogpara"];
$filename = "NONE";
if(isset($_FILES['uploadimage']))
{
$GLOBALS['filename'] = $_FILES['uploadimage']['name'];
$tempname = $_FILES['uploadimage']['tmp_name'];
move_uploaded_file($tempname, "./assets/blog/images/" . $GLOBALS['filename']);
}
$sql = "INSERT INTO blog_table (topic_title, topic_date, image_filename,topic_para) values ('" . $blogTitle . "', '$blogDate', '" . $filename . "', '" . $blogPara . "');";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style type="text/css">
body
{
margin: 0;
word-wrap: break-word;
}
.top-bar
{
background: #252525;
color: #f5f5f5;
margin: 0;
text-align: center;
padding: 10px;
}
#topBarTitle
{
font-family: "Segoe UI", sans-serif;
text-align: center;
margin: 0;
font-size: 30px;
}
#dateLabel
{
font-family: "Segoe UI", sans-serif;
font-weight: bold;
}
.writing-section
{
margin: 10px;
}
form
{
-webkit-tap-highlight-color: transparent;
text-align: center;
}
#blogTitle
{
font-family: "Roboto", sans-serif;
outline: none;
border: 1.5px solid lightgrey;
color: #333;
font-size: 20px;
width: 37.5%;
margin-bottom: 5px;
border-radius: 5px;
padding: 5px 5px;
}
#blogPara
{
font-family: "Roboto", sans-serif;
outline: none;
border: 1.5px solid lightgrey;
color: #333;
resize: none;
font-size: 20px;
margin-top: 5px;
border-radius: 5px;
padding: 5px 5px;
}
#blogDate,#name{
border: none;
outline: none;
font-size: 1em;
}
#saveBtn
{
border: none;
background: dodgerblue;
color: #fff;
font-size: 17.5px;
padding: 5px 25px;
border-radius: 5px;
cursor: pointer;
}
.all-posts-container
{
/*
margin-left: auto;
margin-right: auto; */
font-family: "Roboto", sans-serif;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
.post-container
{
background: #d3d3d3;
margin: 5px;
width: 25%;
height: 500px;
border-radius: 15px;
}
#displayTitle
{
font-weight: bold;
}
#displayImage
{
width: 50%;
height: auto;
border-radius: 15px;
}
</style>
</head>
<body>
<div class="container" style="width: 50%; margin: auto; text-align: justify; font-family: Roboto, sans-serif;">
<h1 style="margin-bottom: 10px; text-align: center;">Post Saved</h1>
<center><a style="color: dodgerblue;" href="blog.php">Go to Home Page</a></center>
<br><br>
<?php echo "<span style='font-weight: bold;' id='showTitle'>" . $blogTitle . "</span>" ?>
<br>
<span id="showDate"><?php echo $blogDate ?></span><br><br>
<center><img src="./assets/blog/images/<?php echo $filename; ?>" id="showImage" style="width: 50%; height: auto;"></center>
<br>
<?php echo "<span id='showPara'>" . $blogPara . "</span>" ?>
<br><br>
</div>
</body>
</html>
<?php
// include footer.php file
include ('footer.php');
?>