-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgalery_usr.php
85 lines (82 loc) · 2.4 KB
/
galery_usr.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
<?php
include "koneksi.php";
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="icon" href="img/icon.jpg">
<title>AnimeBloggers</title>
</head>
<body>
<?php
session_start();
?>
<?php
if(isset($_GET['notif'])){
if($_GET['notif'] == "user"){
echo "<script>alert('Anda berhasil login sebagai $_SESSION[username]')</script>";
}
}
?>
<header>
<center>
<img src="img/login.png" width="100" height="auto">
</center>
<br>
<label for="user">Wellcome, <?php echo $_SESSION['username'] ?></label>
<h1>AnimeBlogger</h1>
<br>
<div class="search-container">
<form action="search.php" method="get">
<input type="text" name="query" placeholder="Cari artikel disini...">
<input type="submit" value="Cari" class="btn-search">
</form>
</div>
</header>
<div class="navbar">
<a href="pengguna.php">Article</a>
<a href="tentang.php">About</a>
<a href="kontak.php">Contact</a>
<a href="galery_usr.php">Gallery</a>
<a href="logout.php">Logout</a>
</div>
<br>
<br>
<div class="container2">
<h1>Galeri Artikel</h1>
<article>
<?php
// Eksekusi kueri SQL untuk mendapatkan data artikel
$sql = "SELECT * FROM galeri_anime";
$result = $koneksi->query($sql);
if ($result) {
if ($result->num_rows > 0) {
while ($row = $result->fetch_assoc()) {
$gambarPath = $row['gambar'];
echo "<img src='" . $gambarPath . "' alt='Gambar Galeri'>";
echo "<br>";
echo "<br>";
}
} else {
echo "Tidak ada galeri artikel yang ditemukan.";
}
}
?>
</article>
</div>
<br>
<br>
<footer>
<br>
<br>
<div class="foot">
<img src="img/anime-46.png" alt="Ikon Anime">
<p>© 2023 AnimeBloggers</P>
<p>Made by <br> Muhamad Akbar maulana</p>
</div>
</footer>
</body>
</html>