<!DOCTYPE html>
<html>
<head>
<title>Kaulitz Storage Contents- Incomplete</title>
<!-- (A) CSS & JS -->
<link href="caption-gallery.css" rel="stylesheet">
<script src="gallery.js"></script>
</head>
<body>
<div class="gallery"><?php
// (B) GET LIST OF IMAGE FILES FROM GALLERY FOLDER
$dir = __DIR__ . DIRECTORY_SEPARATOR . "gallery" . DIRECTORY_SEPARATOR;
$images = glob($dir . "*.{jpg,jpeg,gif,png,bmp,webp}", GLOB_BRACE);
// (C) OUTPUT IMAGES
foreach ($images as $i) {
$img = basename($i);
$caption = substr($img, 0, strrpos($img, "."));
printf("<figure><img src='gallery/%s'/><figcaption>%s</figcaption></figure>", $img, $caption);
}
?></div>
</body>
</html>