punkfairie-site/archive/buttons.php

14 lines
416 B
PHP
Raw Normal View History

2022-11-12 16:08:21 -08:00
<div class="gallery">
<?php
$credits = array('key' => 'https://keysklubhouse.neocities.org/',
'GIFCollection' => 'https://cyber.dabamos.de/88x31/');
foreach ($credits as $author => $link) {
foreach (glob('img/buttons/' . $author . '/*.*') as $img) {
echo "<a href='" . $link . "' target='_blank'>";
echo "<img src='" . $img . "'>";
echo "</a>";
}
}
?>
</div>