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.

18 line
393B

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