mirror of
https://github.com/Poniverse/Pony.fm.git
synced 2024-11-22 21:18:00 +01:00
19 lines
No EOL
716 B
PHP
19 lines
No EOL
716 B
PHP
<!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>
|