python
This commit is contained in:
Andreas Wilms
2025-09-08 16:25:55 +02:00
commit 78481ca337
617 changed files with 345831 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?php
$dir = './';
$files = scandir($dir);
foreach($files as $key => $value){
if($value === "." || $value === ".." || $value === "image_preview.php"){
continue;
}
?>
<div style="float: left; margin: 10px; width: 140px; height: 140px">
<span ><?= $value ?></span><br>
<img src="<?= $value ?>" style="width: 128px; border: 1px solid black" />
</div>
<?php
}
?>