-
Notifications
You must be signed in to change notification settings - Fork 0
/
clicked-resource.php
370 lines (344 loc) · 12.4 KB
/
clicked-resource.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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
<?php
include_once("./includes/session.php");
include_once("./includes/DB.php");
include_once("./includes/DateTime.php");
include_once("./includes/functions.php");
global $connectingDB;
$resource_id = $_GET['id'];
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./assets/css/index.css" />
<link
rel="stylesheet"
href="https://cdn.quilljs.com/1.3.6/quill.snow.css"
/>
<link rel="stylesheet" href="./assets/css/navbar.css" />
<link rel="stylesheet" href="./assets/css/footer.css" />
<link rel="stylesheet" href="./assets/css/clicked-resource.css" />
<link
rel="shortcut icon"
href="./assets/images/bitconEducationLogo.png"
type="image/x-icon"
/>
<title>Document</title>
</head>
<body>
<nav>
<div class="nav-container-desktop">
<a href="index.html"
><div class="logo">
<img src="./assets/images/bitconEducationLogo.png" alt="Bitlearn" />
</div>
</a>
<ul class="navbar-links">
<li>
<!-- ///////////////// -->
<div class="nav-dropdown">
<a class="nav-dropdown" href="#">
<span> Resources </span>
<img
src="./assets/images/arrow-down-short.svg"
alt=""
srcset=""
/></a>
<!-- ///////////////// -->
<div class="dropdown-content">
<div class="content">
<div class="left">
<span class="title">Reasorces</span>
<div class="resorce-container">
<!-- ////////// -->
<a
href="./resource-page.php?resource=bitcoin-mining"
class="reasorce"
>
<span class="reasorce-title">Bitcoin Mining</span>
<span class="reasorce-description"
>View all reasorces positioned around bitcoin
mining</span
>
</a>
<!-- //////////// -->
<!-- ////////// -->
<a
href="./resource-page.php?resource=economics"
class="reasorce"
>
<span class="reasorce-title">Economics</span>
<span class="reasorce-description"
>View all reasorces positioned around the economics of
bitcoin</span
>
</a>
<!-- //////////// -->
<!-- ////////// -->
<a
href="./resource-page.php?resource=philosophy"
class="reasorce"
>
<span class="reasorce-title">Philosophy</span>
<span class="reasorce-description"
>View all reasorces positioned around the philosophy
of bitcoin</span
>
</a>
<!-- //////////// -->
<!-- ////////// -->
<a
href="./resource-page.php?resource=new-innovations"
class="reasorce"
>
<span class="reasorce-title">New Innovations</span>
<span class="reasorce-description"
>View all reasorces highlighting new innovations</span
>
</a>
<!-- //////////// -->
</div>
</div>
<div class="right">
<div class="right-container">
<span>All Reasorces</span>
<img
src="./assets/images/resources.png"
alt="icon for reasource page"
srcset=""
/>
<span class="description"
>View all of our reasorces today!</span
>
<a href="./all-resource-page.html">View Reasorces</a>
</div>
</div>
</div>
<!-- <li>Bitcoin Mining</li>
<li>Economics</li>
<li>Philosophy</li>
<li>Applications</li> -->
<!-- ///////////////// -->
</div>
</div>
<!-- ///////////////// -->
</li>
<!-- dropdown for courses, books, podcasts, twitter followers, etc -->
<li><a href="./under-construction.html">Pricing</a></li>
<li><a href="./fourm-page.php">Fourm</a></li>
<!-- custom content that we put out -->
<!-- <li><a href="./under-construction.html">Community</a></li> -->
<!-- Q and A section for users -->
<li><a href="./news-page.html">Current News</a></li>
</ul>
</div>
<div class="nav-container-mobile">
<div class="logo">
<a href="index.html"
><img src="./assets/images/bitconEducationLogo.png" alt="Bitlearn"
/></a>
</div>
<div class="login-signup">
<img
class="dropdown-BTN"
src="./assets/images/list.svg"
alt=""
srcset=""
/>
<!-- hamburger menu -->
</div>
</div>
<!-- mobile nav dropdown -->
<div class="mobile-nav-dropdown">
<ul class="navbar-links">
<li><a href="./all-resorces-page.html">Reasorces</a></li>
<!-- dropdown for courses, books, podcasts, twitter followers, etc -->
<li><a href="./under-construction.html">Pricing</a></li>
<li><a href="./fourm-page.php">Fourm</a></li>
<!-- custom content that we put out -->
<!-- <li><a href="./under-construction.html">Community</a></li> -->
<li><a href="./news-page.html">Current News</a></li>
<!-- Q and A section for users -->
</ul>
</div>
<div class="bitcoin-stats">
<ul class="stats-container">
<li class="price">
Price: <span class="info-container">754703</span>
</li>
<li class="percentChange">
24hr price change: <span class="info-container">754703</span>
</li>
<li class="market-cap">
Market Cap: <span class="info-container">754703</span>
</li>
<li class="volume">
Volume: <span class="info-container">754703</span>
</li>
<li class="blockheight">
Block Height: <span class="info-container">754703</span>
</li>
<li class="difficulty">
Difficulty: <span class="info-container">48.71T</span>
</li>
<li class="hashrate">
Hash Rate: <span class="info-container">43.64E/H</span>
</li>
<li class="nodecount">
Node Count: <span class="info-container">15,000</span>
</li>
<!-- <li class="lasthash">
Last Hash:
<span class="info-container">
0000000000000000000624d76f52661d0f35a0da8b93a87cb93cf08fd9140209</span
>
</li> -->
</ul>
</div>
</nav>
<main>
<div class="content">
<div class="post-information">
<?php
$sql =
"
SELECT *
FROM resources
WHERE resource_id = $resource_id
";
$stmt = $connectingDB -> prepare($sql);
$stmt->execute();
$Result = $stmt->rowcount();
if ($Result > 0){
$DataRow = $stmt->fetch();
$title = $DataRow['title'];
$f_name = $DataRow['f_name'];
$l_name = $DataRow['l_name'];
$catagory = $DataRow['catagory'];
$date_added = $DataRow['date_added'];
$content = $DataRow['content'];
$Q_A_dict = $DataRow['questions_answers'];
?>
<span class="post-title"
><?= $title?></span>
<div class="person-time">
<?php
if ($f_name != 0){
?>
<span class="author">By: <?php echo ucfirst($f_name) . " " . ucfirst($l_name)?></span>
<?php
}else{
?>
<span class="author">By: Unkown</span>
<?php
}
?>
<span class="post-date"
><img
src="./assets/images/clock-three.svg"
alt="clock to show that this is the post date"
srcset=""
/><?=$date_added?>
</span>
</div>
</div>
<div class="post">
<?= gzuncompress($content)?>
</div>
<div class="recommended">
<span class="recommended-title">Recommended for you:</span>
<ul class="content-list">
<a href=""><li>item 2</li></a>
<a href=""><li>item 2</li></a>
<a href=""><li>item 2</li></a>
<a href=""><li>item 2</li></a>
</ul>
</div>
<div class="quiz">
<div class="begin-container">
<?php
if ($Q_A_dict){
?>
<span class="tile">Click the start button to begin quiz!</span>
<span class="description">Once you click next you cannot go back, so chose your answer wisely</span>
<span class="start-quiz-BTN">Start Quiz</span>
<?php
}else{
?>
<span class="tile">This resource does not have any questions</span>
<?php
}
?>
</div>
</div>
<?php
}else{
echo "<span>No Post Found</span>";
}
?>
</div>
</main>
<footer>
<div class="footer-container">
<div class="logo">
<a href="index.html"
><img
src="./assets/images/bitconEducationLogo.png"
alt="[platform name]"
/></a>
</div>
<div class="to-questions list-container">
<span class="title"> [platform name] </span>
<ul class="footer-list">
<li class="footer-item">
<a href="./fourm-page.php">Questoins</a>
</li>
<li class="footer-item"><a href="./news-page.html">News</a></li>
<li class="footer-item">
<a href="./under-construction.html">Education</a>
</li>
<li class="footer-item">
<a href="./fourm-page.php">Fourm</a>
</li>
</ul>
</div>
<div class="company list-container">
<span class="title"> Company </span>
<ul class="footer-list">
<li class="footer-item">
<a href="./company-pages/about-us.html">About</a>
</li>
<li class="footer-item"><a href="./help.html">Help</a></li>
<li class="footer-item">
<a href="./under-construction.html">Privacy Policy</a>
</li>
<li class="footer-item">
<a href="./under-construction.html">Terms of Service</a>
</li>
<li class="footer-item">
<a href="./under-construction.html">Privacy Polict</a>
</li>
</ul>
</div>
<div class="social list-container">
<div class="top">
<ul class="social-list">
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Linkedin</a></li>
<li><a href="#">Instagram</a></li>
</ul>
</div>
<div class="bottom">
<span>Copyright © 2023 [platform name] All rights reserved.</span>
</div>
</div>
</div>
</footer>
<script src="https://mempool.space/mempool.js"></script>
<script src="./javaScript/navbar.js"></script>
<script src="./javaScript/clicked-resource.js"></script>
</body>
</html>