blob: 98fb2946eea4842a6a4118560d68e4c6e7407a4f [file] [log] [blame]
<?php
$mimeType = isset($_GET['mimetype']) ? $_GET['mimetype'] : 'text/plain';
$content = isset($_GET['content']) ? $_GET['content'] : 'Missing mimetype or content query parameter.';
header("Content-Type: $mimeType");
echo $content;
?>