]> scripts.mit.edu Git - autoinstallsdev/mediawiki.git/blobdiff - vendor/james-heinrich/getid3/demos/index.php
MediaWiki 1.30.2
[autoinstallsdev/mediawiki.git] / vendor / james-heinrich / getid3 / demos / index.php
diff --git a/vendor/james-heinrich/getid3/demos/index.php b/vendor/james-heinrich/getid3/demos/index.php
new file mode 100644 (file)
index 0000000..8912075
--- /dev/null
@@ -0,0 +1,19 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
+<html><head><title>getID3 demos</title><style type="text/css">BODY, TD, TH { font-family: sans-serif; font-size: 10pt; }</style></head><body>
+
+In this directory are a number of examples of how to use <a href="http://www.getid3.org/">getID3()</a>.<br>
+If you don't know what to run, take a look at <a href="demo.browse.php"><b>demo.browse.php</b></a>
+<hr>
+Other demos:<ul>
+<?php
+if ($dh = opendir('.')) {
+       while ($file = readdir($dh)) {
+               if (preg_match('#^demo\\..+\\.php$#', $file)) {
+                       echo '<li><a href="'.htmlentities($file, ENT_QUOTES).'">'.htmlentities($file).'</a></li>';
+               }
+       }
+}
+?>
+</ul>
+</body>
+</html>
\ No newline at end of file