in reply to Getting system enviornmentals when running CGI

Hello westrock2000,

Usually Apache sets the environmental variable 'DOCUMENT ROOT', but to make sure, why not print out all the variables:

foreach my $env ( sort keys %ENV ) { print "ENV:\t$env\t$ENV{$env}\n"; }
I usually print to a file so I can check it later and often. Perl gives you the power, so why not use it :-)

Regards...Ed

"Well done is better than well said." - Benjamin Franklin