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.
 
 
 
 
 

61 lines
1018 B

  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3. <head>
  4. <title>Filetype icons</title>
  5. <style>
  6. body {
  7. background-color: #ccc;
  8. font-family: Arial;
  9. }
  10. .box {
  11. width: 200px;
  12. float: left;
  13. padding: 0.5em;
  14. margin: 0;
  15. }
  16. .white {
  17. background-color: #fff;
  18. }
  19. .black {
  20. background-color: #000;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <?php
  26. $fi_list = '';
  27. $fi_list32 = '';
  28. foreach (glob('*.png') as $img) {
  29. $fi_list .= '<img src="' . $img . '" alt="' . $img . '" title="' . $img . '" /> ';
  30. }
  31. foreach (glob('32x32/*.png') as $img) {
  32. $fi_list32 .= '<img src="' . $img . '" alt="' . $img . '" title="' . $img . '" /> ';
  33. }
  34. echo '<div class="white box">
  35. ' . $fi_list . '
  36. </div>
  37. <div class="black box">
  38. ' . $fi_list . '
  39. </div>
  40. <br style="clear: left" />
  41. <div class="white box">
  42. ' . $fi_list32 . '
  43. </div>
  44. <div class="black box">
  45. ' . $fi_list32;
  46. ?>
  47. </div>
  48. </body>
  49. </html>