Sign in
webkit
/
WebKit
/
9f8388ebdf099a98ce75d93c131e5941dc4da269
/
.
/
LayoutTests
/
http
/
tests
/
xmlhttprequest
/
resources
/
get_method.php
blob: 5bf9663830d6a56ffd1941688753d71eef9bc2d7 [
file
] [
log
] [
blame
]
<?
php
$method
=
$_SERVER
[
'REQUEST_METHOD'
];
header
(
"REQMETHOD: $method"
);
if
(
$method
!=
"HEAD"
)
{
echo $method
;
}
?>