Click to See Complete Forum and Search --> : Environment Variables


Winglys
03-22-2003, 06:29 AM
Is there anyway I can learn environment variables from the internet?
Anyone recommend a good tutorial web site for enviroment variables ?
thanks :)

jeffmott
03-23-2003, 06:37 PM
http://hoohoo.ncsa.uiuc.edu/cgi/env.html

pyro
03-23-2003, 09:47 PM
You can use this to print off the variables that your server supports:

#!/usr/bin/perl

print "Content-type: text/html\n\n";

foreach $env_var (keys %ENV)
{
print "The $env_var variable is: $ENV{$env_var}<br>";
}