blob: 9eabaa9ae2edcfb1d7ac7acf6700778909c814c5 [file] [log] [blame]
<?php
$content = $_GET["content"] ? $_GET["content"] : "";
$type = $_GET["type"] ? $_GET["type"] : "";
header("HTTP/1.1 200 OK");
header("Content-Type:" . $type);
echo $content;
exit;
?>