index.php 901 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <!DOCTYPE html>
  2. <html lang="en" dir="ltr">
  3. <head>
  4. <title>Smileys</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. $smi_list = '';
  27. foreach (glob('*.svg') as $img) {
  28. $smi_list .= '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
  29. }
  30. if(is_dir('local')) {
  31. $smi_list .= '<hr />';
  32. foreach (glob('local/*.svg') as $img) {
  33. $smi_list .= '<img src="'.$img.'" alt="'.$img.'" title="'.$img.'" /> ';
  34. }
  35. }
  36. echo '<div class="white box">
  37. '.$smi_list.'
  38. </div>
  39. <div class="black box">
  40. '.$smi_list;
  41. ?>
  42. </div>
  43. </body>
  44. </html>