in reply to The Environment variable for URL...
#!/usr/bin/perl -w use strict; use CGI qw(:standard); print header, start_html(-title => 'ENV vars', -bgcolor => 'white'); foreach (sort keys %ENV){ print "<b>$_</b> -> \"$ENV{$_}\"\n<br>\n"; } print end_html;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
RE: Re: The Environment variable for URL...
by BBQ (Curate) on May 22, 2000 at 07:57 UTC |