The version of vichan running on lainchan.org
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

18 líneas
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>