#!\M:\perl # Change the path above to your perl path # Set the file attributes to 755 # You may have to change the .pl to .cgi or vice versa. # print "Content-type: text/html\n\n"; print ""; print "ENV"; print ""; foreach $key (keys %ENV){ print qq|The value of $key is $ENV{"$key"}
\n|; } print "";