Rav has asked for the wisdom of the Perl Monks concerning the following question:
But instead of HTTP Environment Variables, I get Linux Shell Variables. Any light the divine perlmonks could shed on this issue is, again, received with complete gratitude :) Thanks!foreach $var (sort(keys(%ENV))) { $val = $ENV{$var}; $val =~ s|\n|\\n|g; $val =~ s|"|\\"|g; print "${var}=\"${val}\"\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Reading HTTP Environment Variables from web Clients point of view
by archon (Monk) on Feb 21, 2001 at 10:33 UTC | |
|
Re: Reading HTTP Environment Variables from web Clients point of view
by dws (Chancellor) on Feb 21, 2001 at 11:35 UTC | |
|
Re: Reading HTTP Environment Variables from web Clients point of view
by sierrathedog04 (Hermit) on Feb 21, 2001 at 21:06 UTC |