1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  3. <head>
  4. <title>SMN Jazz 2003</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6.  
  7. <?php
  8. if ($handle = opendir('.')) {
  9. ?>
  10. <h3>Songs:</h3>
  11. <ul>
  12. <?php
  13. $banned = array(".", "..", "index.php", "error_log");
  14. // List all the files
  15. while ( false !== ( $file = readdir($handle) ) )
  16. {
  17. if( !in_array($file, $banned) )
  18. echo "<li><a href=\"$file\" title=\"$file\">$file</a></li>";
  19. }
  20.  
  21. closedir($handle);
  22. }
  23. ?>
  24. </ul>