At 12:13 07.06.2001 -0400, you wrote:
>Progress!! now I understand what the 'QUERY_STRING' is!
>
>and a little
>
>foreach(@key = keys(%ENV))
>{
> print "$_: $ENV{$_}<br>\n";
>}
except you should write
foreach(keys %ENV)
{
print ...
}
or
foreach my $key (keys %ENV)
{
print "$key: $ENV{$key}<br>";
}
or, my favorite
print "$_ => $ENV{$_}<br>\n" foreach keys %ENV;
Aaron Craig
Programming
iSoftitler.com
- the ENV command? parameter? Bradshaw, Brian
- Re: the ENV command? parameter? Jean-Matthieu Guerin
- Re: the ENV command? parameter? Randal L. Schwartz
- RE: the ENV command? parameter? Andrew Nelson
- Re: the ENV command? parameter? Randal L. Schwartz
- Re: the ENV command? parameter? Ondrej Par
- Re: the ENV command? parameter? Pete Emerson
- RE: the ENV command? parameter? Bradshaw, Brian
- Re: the ENV command? parameter? Aaron Craig
- Re: the ENV command? parameter? Mathew Hennessy
- RE: the ENV command? parameter? Bradshaw, Brian
- RE: the ENV command? parameter? Aaron Craig
- RE: the ENV command? parameter? Bradshaw, Brian
