-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathread-post.php
106 lines (87 loc) · 3.7 KB
/
read-post.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
<?php
session_start();
include "connection.php";
$id = $_GET['id'];
if(!isset($id)){
header('Location:index.php');
}
$query = mysqli_query($connect, "SELECT * FROM posts WHERE id = $id");
$results = mysqli_fetch_all($query, MYSQLI_ASSOC);
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Simple Blog - Codepolitan</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- Dependencies -->
<script src="js/jquery-3.4.1.slim.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/sweetalert.min.js"></script>
<!-- Bootstrap JS -->
<script src="js/bootstrap.bundle.min.js"></script>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark justify-content-between">
<a class="navbar-brand" href="index.php">Simple Blog</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.php">Home</a>
</li>
<?php if(!$_SESSION) : ?>
<li class="nav-item active">
<a class="nav-link" href="login.php">Login</a>
</li>
<?php endif; ?>
<?php if($_SESSION) : ?>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Hi, <?php echo $_SESSION['username'] ?>
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
<a class="dropdown-item" href="dashboard.php">Dashboard</a>
<a class="dropdown-item" href="logout.php">Log Out</a>
</div>
</li>
<?php endif; ?>
</ul>
</div>
</nav>
</header>
<main role="main">
<section class="jumbotron text-center">
<div class="container">
<h1><?php echo $results[0]['title'] ?></h1>
</div>
</section>
<div class="container mb-4">
<div class="row">
<?php if($results[0]['cover_url']) : ?>
<div class="col-md-12 text-center">
<img src="<?php echo $results[0]['cover_url'] ?>" alt="" class="img-fluid shadow mb-3">
</div>
<?php endif; ?>
<div class="col-md-12">
<?php echo $results[0]['content'] ?>
</div>
</div>
</div>
</main>
<footer class="text-muted">
<div class="container">
<p class="float-right">
<a href="#">Back to top</a>
</p>
<p>Album example is © Bootstrap, but please download and customize it for yourself!</p>
<p>New to Bootstrap? <a href="https://getbootstrap.com/">Visit the homepage</a> or read our <a href="/docs/4.5/getting-started/introduction/">getting started guide</a>.</p>
</div>
</footer>
</body>
</html>