-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsidebar.php
More file actions
22 lines (22 loc) · 728 Bytes
/
sidebar.php
File metadata and controls
22 lines (22 loc) · 728 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
include_once "koneksi.php";
$sqlUtama = "SELECT * FROM tb_berita WHERE arsip_utama=1 ORDER BY id DESC LIMIT 8";
$arsip = mysqli_query($konek, $sqlUtama);
?>
<div class="card">
<div class="card-header bg-primary text-white">
Arsip Utama
</div>
<ul class="list-group list-group-flush">
<?php
while ($row=mysqli_fetch_assoc($arsip)) {
?>
<li class="list-group-item">
<small class="text-muted"><?php echo $row['author']; ?>, <?php echo $row['tanggal']; ?></small>
<br>
<a href="<?php echo "detailberita.php?id=".$row['id']; ?>"><?php echo $row['judul']; ?></a>
</li>
<?php } ?>
</ul>
</div>
</div>