index.php 854 B

1234567891011121314151617181920212223
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html><head><title>getID3 demos</title><style type="text/css">BODY, TD, TH { font-family: sans-serif; font-size: 10pt; }</style></head><body>
  3. <?php
  4. die('For security reasons, this demo has been disabled. It can be enabled by removing line '.__LINE__.' in demos/'.basename(__FILE__));
  5. ?>
  6. In this directory are a number of examples of how to use <a href="https://www.getid3.org/">getID3()</a>.<br>
  7. If you don't know what to run, take a look at <a href="demo.browse.php"><b>demo.browse.php</b></a>
  8. <hr>
  9. Other demos:<ul>
  10. <?php
  11. if ($dh = @opendir('.')) {
  12. while ($file = @readdir($dh)) {
  13. if (preg_match('#^demo\\..+\\.php$#', $file)) {
  14. echo '<li><a href="'.htmlentities($file).'">'.htmlentities($file).'</a></li>';
  15. }
  16. }
  17. }
  18. ?>
  19. </ul>
  20. </body>
  21. </html>