add posters

This commit is contained in:
j 2007-07-25 14:12:17 +00:00
commit 6198a0732c
15 changed files with 21085 additions and 0 deletions

13
piratecinema.php Executable file
View file

@ -0,0 +1,13 @@
<?
include('php/library.php');
$list = crawlPath('/mnt/storage/gas/Archive/Movies/');
foreach ($list as $value) {
$pathinfo = pathinfo($value);
if (in_array($pathinfo['extension'], $imagetype))
echo "$value\n";
}
?>