extranet/www/image.php

8 lines
169 B
PHP
Raw Normal View History

<?php
$path = '../cache/imgcache/';
$file = $_REQUEST['q'];
if(file_exists($path.$file)){
header("Content-type: image/png");
print file_get_contents($path.$file);
}
?>