extranet/www/image.php

4 lines
105 B
PHP
Raw Normal View History

<?php
header("Content-type: image/png");
print file_get_contents('../cache/imgcache/'.$_REQUEST['q']);
?>