Sign in
webkit
/
WebKit
/
d2bbe276796add2f96b13717d703f86a588409c5
/
.
/
LayoutTests
/
http
/
tests
/
inspector
/
network
/
resources
/
echo.php
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
;
?>