The version of vichan running on lainchan.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
518B

  1. <html>
  2. <head>
  3. <title>Lainchan Banners</title>
  4. </head>
  5. <body>
  6. <?php
  7. function listBannersInDir($dir) {
  8. if ($handle = opendir($dir)) {
  9. while (false !== ($entry = readdir($handle))) {
  10. if ($entry != "." && $entry != "..") {
  11. echo "<a href=\"$dir/$entry\"><img src=\"$dir/$entry\" alt=\"$entry\" style=\"width:348px;height:128px\"></a> ";
  12. }
  13. }
  14. closedir($handle);
  15. }
  16. }
  17. listBannersInDir("banners_priority");
  18. listBannersInDir("banners");
  19. ?>
  20. </body>
  21. </html>