mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2025-07-07 01:35:25 +08:00
qt 6.5.1 original
This commit is contained in:
11
tests/testserver/apache2/testdata/www/cgi-bin/echo.cgi
vendored
Normal file
11
tests/testserver/apache2/testdata/www/cgi-bin/echo.cgi
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
if ($ENV{'REQUEST_METHOD'} eq "GET") {
|
||||
$request = $ENV{'QUERY_STRING'};
|
||||
} elsif ($ENV{'REQUEST_METHOD'} eq "POST") {
|
||||
read(STDIN, $request, $ENV{'CONTENT_LENGTH'}) || die "Could not get query\n";
|
||||
}
|
||||
|
||||
print "Content-type: text/plain\n\n";
|
||||
print $request;
|
||||
|
Reference in New Issue
Block a user