Archived
1
0
Fork 0
This repository has been archived on 2018-09-13. You can view files and clone it, but cannot push or open issues or pull requests.
sjqg/funktionen/thumbnail_show.php

6 lines
221 B
PHP

<?php
foreach ($thumbsizes as $thumbfile => $thumbsize) {
printf("<div class=\"thumbnail\"><img src=\"%s\" alt=\"\" height=\"%s\" /></div>",
$thumbfile, $thumbheight);
}
?>