Lokasi:
/
home
/
u109751622
/
domains
/
tallypointgorakhpur.com
/
public_html
/
Ubah: gallery.php
<?php $title = "Gallery - My Institute"; include 'config.php'; include 'header.php'; $result = $conn->query("SELECT * FROM gallery ORDER BY uploaded_at DESC"); ?> <h2 class="mb-3">Gallery</h2> <div class="row g-3"> <?php while($g = $result->fetch_assoc()): ?> <div class="col-6 col-md-3"> <div class="card h-100"> <img src="<?php echo htmlspecialchars($g['image_path']); ?>" class="card-img-top" alt="image"> <div class="card-body p-2"> <small class="text-muted"><?php echo htmlspecialchars($g['caption']); ?></small> </div> </div> </div> <?php endwhile; ?> </div> <?php include 'footer.php'; ?>
Batal