summaryrefslogtreecommitdiffstats
path: root/debian/perl-framework/t/htdocs/modules/cgi/action.pl.PL
blob: 19d65292e905030ed48c52e827b8b6d265a061b6 (plain)
1
2
3
4
5
6
7
8
9
10
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;
}