Sign in
apache
/
httpd-tests
/
refs/heads/trunk
/
.
/
t
/
htdocs
/
modules
/
cgi
/
action.pl.PL
blob: 19d65292e905030ed48c52e827b8b6d265a061b6 [
file
]
use
strict
;
print
"Content-type: text/plain\n\n"
;
print
$ENV
{
PATH_INFO
}
.
"\n"
;
if
(
my
$ct
=
$ENV
{
CONTENT_LENGTH
})
{
read STDIN
,
my
$buffer
,
$ct
;
print
$buffer
;
}