Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Enviroment Test

Quote Reply
Enviroment Test
Does anyone know where I can get an enviroment test for windows nt
Quote Reply
Re: Enviroment Test In reply to
The cgierror routine in most of the LINKS script should show most of your Environmental Variables.

What exactly do you want to "test"?

Also, how does this relate to LINKS????

Regards,

------------------
Eliot Lee
Anthro TECH,L.L.C
www.anthrotech.com
----------------------


Quote Reply
Re: Enviroment Test In reply to
Code:
#!/usr/local/bin/perl

use CGI ();

my $in = new CGI;

print $in->header('text/plain');
foreach (sort keys %ENV) {
print "$_:" . " " x (20-length($_)) . "$ENV{$_}\n";
}

jerry