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
384 B

  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3. <head>
  4. <title>Filetype icons</title>
  5. <style>
  6. body {
  7. background-color: #fff;
  8. font-family: Arial;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <?php
  14. foreach (glob('*.svg') as $img) {
  15. echo '<img src="' . $img . '" alt="' . $img . '" width="32" height="32" title="' . $img . '" /> ';
  16. }
  17. ?>
  18. </body>
  19. </html>