vbytes_billoard/images.php
2026-04-17 22:08:06 +02:00

21 lines
No EOL
669 B
PHP

<!DOCTYPE html>
<html lang="sv">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="gallery-container">
<?php
$dir = 'img/';
$images = glob($dir . "*.{jpg,jpeg,png,gif,webp,svg}", GLOB_BRACE);
foreach ($images as $image) {
echo '<div class="gallery-item">';
echo '<img src="' . $image . '" alt="Photo">';
echo '<p>' . $image . '</p>';
echo '</div>';
}
?>
</div>
</body>
</html>