REQUEST_URI = /test.shtml/extra/path?param=1 PATH_INFO = /extra/path QUERY_STRING = param=1 SCRIPT_NAME = /script.cgi DOCUMENT_URI = /test.shtml/extra/path #### #!/usr/bin/perl print "Content-type: text/plain\n\n"; for (sort keys %ENV) { print "$_ : $ENV{$_}\n"; } #### -- Joost downtime n. The period during which a system is error-free and immune from user input.