-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpost.php
More file actions
56 lines (54 loc) · 2 KB
/
post.php
File metadata and controls
56 lines (54 loc) · 2 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
<?php
session_start();
include 'includes/post.inc.php';
?>
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.7.2/css/all.min.css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/post.css">
<title>TARUNNO DRIVES | more</title>
</head>
<body>
<div class="nav">
<a href="javascript:history.back();"><i class="fas fa-angle-double-left"></i></a><h1>TARUNNO DRIVES</h1>
</div>
<h1 class="headling">Post</h1>
<div class="container">
<div class="results">
<?php
$row = $thoughts->fetch_assoc();
echo '<div class="image" style="background-image:url(assets/Thought_images/'.$row['image'].');
background-size: cover;
background-position:center;">
</div>
<div class="text">
<h2>'.$row['title'].'</h2>
<i class="far fa-user"> <p style="display: inline;"> Mahdi Hasan Tarunno</p></i>
<p style="display: inline; padding:0px 5px 0px 5px;"> | </p>
<i class="far fa-calendar-alt"> <p style="display:inline;"> '.$row['create_time'].'</p></i>
<p style="display: inline; padding:0px 5px 0px 5px;"> | </p>
<i class="fas fa-paperclip" style="display:inline;"><p style="display:inline;"> '.$row['tag'].' </p></i>
<br><br>
<p>'.$row['body'].'</p>
<br>
</div>';
?>
</div>
</div>
<footer>
<div class="social">
<h2>FLLOW US</h2>
<a href="#"> <i class="fab fa-facebook"> <span></span> </i> </a>
<a href="#"> <i class="fab fa-instagram"> <span></span> </i> </a>
<a href="#"> <i class="fab fa-twitter"> <span></span> </i> </a>
<a href="#"> <i class="fab fa-youtube"> <span></span> </i> </a>
</div>
<div class="credit">
<h1>TARUNNO DRIVES | Developed by mahadi hasan tarunno</h1>
</div>
</footer>
</body>
</html>