tilde/pin/qr/rbb/print.php

14 lines
254 B
PHP

<?php
$files = glob("*.png");
foreach ($files as $file) {
$display = urldecode(basename($file, ".png"));
?>
<img src="./<?=urlencode($file)?>" />
<p>Something broken? Scan here and let us know.</p>
<p><?=$display?></p>
<hr>
<?php
}