10 lines
No EOL
266 B
PHP
Executable file
10 lines
No EOL
266 B
PHP
Executable file
<?php
|
|
|
|
include('php/library.php');
|
|
|
|
if (!in_array(strlen($id), array(7, 34)))
|
|
die ('poster.php returns a poster for a given IMDb id<br />usage: poster.php?id=ID[&size=SIZE]<br />ID: IMDb id<br />SIZE: small [128px] or large [512px]');
|
|
|
|
returnPoster($id, $size);
|
|
|
|
?>
|