in reply to %ENV and Javascript
So, I guess the question would be: are *none* of the env. variables getting set--which would be a bit odd and would indicate some trouble, possibly--or just the specific ones that you're using?
In case you haven't tried seeing which ones are being set already.for my $key ($keys %ENV) { print $key, ": ", $ENV{$key}, "<br>\n"; }
|
|---|