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
4In this directory are a number of examples of how to use <a href="https://www.getid3.org/">getID3()</a>.<br>
5If you don't know what to run, take a look at <a href="demo.browse.php"><b>demo.browse.php</b></a>
6<hr>
7Other demos:<ul>
8<?php
9if ($dh = opendir('.')) {
10	while ($file = readdir($dh)) {
11		if (preg_match('#^demo\\..+\\.php$#', $file)) {
12			echo '<li><a href="'.htmlentities($file, ENT_QUOTES).'">'.htmlentities($file).'</a></li>';
13		}
14	}
15}
16?>
17</ul>
18</body>
19</html>
20