Basic PHP document management system, including automatic detection of corporate logos in letters
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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>