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