|
Kaye and Geoff's web page documentation
Perl script to show the environment variablesThe following Perl code returns the environment variables which are set as part of the interaction between the browser and the web server, in alphabetic order: ';
for $key (sort keys %ENV)
{
print "$key=$ENV{$key}\n";
}
print '';
print '';
|
|
Top Close |