extranet/www/image.php

9 lines
215 B
PHP

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