Skip to content

Instantly share code, notes, and snippets.

@cezarderevlean
cezarderevlean / folder-img-to-html.php
Created November 29, 2016 14:31
show all images in a folder into a html page
<?php
$dir = 'img';
$files = scandir($dir);
$ext = '.png';
foreach ($files as $img) {
if ( substr_compare($img, $ext, -strlen($ext), strlen($ext)) === 0 ) {
?>
<h2 style="font-family: monospace;"><?=$img?></h2>
<div style="text-align: center; margin-bottom: 100px;">
<img src="img/<?=$img?>">