index.php 980 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 = ''; $fi_list32 = '';
  27. foreach (glob('*.png') as $img) {
  28. $fi_list .= '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
  29. }
  30. foreach (glob('32x32/*.png') as $img) {
  31. $fi_list32 .= '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
  32. }
  33. echo '<div class="white box">
  34. '.$fi_list.'
  35. </div>
  36. <div class="black box">
  37. '.$fi_list.'
  38. </div>
  39. <br style="clear: left" />
  40. <div class="white box">
  41. '.$fi_list32.'
  42. </div>
  43. <div class="black box">
  44. '.$fi_list32;
  45. ?>
  46. </div>
  47. </body>
  48. </html>