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.
 
 
 
 
 

54 lines
932 B

  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>