CGI Perl

# The HTML file with a hotlink to a CGI script


TESTING ENV VARIABLES



here

text continues here...


#!/bin/perl
print "Content type: text/plain\n\n";
print "CGI/1.1 test script report:\n\n";
while(($key, $value)=each(%ENV)){
    print "$key = $value\n";
}