Basic PHP document management system, including automatic detection of corporate logos in letters
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.

logotest.php 321B

1234567891011121314151617
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
  2. <html>
  3. <head>
  4. <title>Document Management</title>
  5. </head>
  6. <body>
  7. <div id="searchresults">
  8. <?PHP
  9. foreach (glob('.logos/*') as $logo) {
  10. echo '<img src="', $logo, '" style="float: left;">';
  11. }
  12. ?>
  13. </div>
  14. </body>
  15. </html>