11 lines
164 B
PHP
11 lines
164 B
PHP
<?php
|
|
|
|
if ( !isset($_REQUEST['mimetype']) ) exit();
|
|
$mimetype = $_REQUEST['mimetype'];
|
|
|
|
header("Content-type: {$mimetype}");
|
|
readfile("/tmp/curthumb");
|
|
|
|
exit();
|
|
?>
|