additional_plugins/serendipity_event_podcast/player/james-heinrich/getid3/demos/index.php
onli dcf32c365d
podcast 1.37.7: PHP 8 compatibility fixes (#144)
Fix some warning in the main code, update getid3
2022-11-23 15:29:25 +01:00

24 lines
854 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>
<?php
die('For security reasons, this demo has been disabled. It can be enabled by removing line '.__LINE__.' in demos/'.basename(__FILE__));
?>
In this directory are a number of examples of how to use <a href="https://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).'">'.htmlentities($file).'</a></li>';
}
}
}
?>
</ul>
</body>
</html>