Lokasi:
/
home
/
u109751622
/
domains
/
tallypointgorakhpur.com
/
public_html
/
Ubah: notice.php
<?php $title = "Notices - My Institute"; include 'config.php'; include 'header.php'; $result = $conn->query("SELECT * FROM notices ORDER BY created_at DESC"); ?> <h2 class="mb-3">Latest Notices</h2> <div class="list-group"> <?php while($n = $result->fetch_assoc()): ?> <div class="list-group-item"> <h5 class="mb-1"><?php echo htmlspecialchars($n['title']); ?></h5> <small class="text-muted"><?php echo htmlspecialchars($n['created_at']); ?></small> <p class="mb-1 mt-2"><?php echo nl2br(htmlspecialchars($n['content'])); ?></p> </div> <?php endwhile; ?> </div> <?php include 'footer.php'; ?>
Batal