in reply to Extracting name value pairs from Environment Variables
And see what's held in INPUT. The reason why $address remain undefined is because the hash keys you are looking for might not exist in the hash table.use Data::Dumper; ... print "Content-Type: text/html\n\n"; print "<HTML><BODY><Pre>\n" print Dumper(\%INPUT); # insert this after the foreach loop print "</Pre></BODY></HTML>\n" exit(0); ...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Extracting name value pairs from Environment Variables
by jonnyfolk (Vicar) on Sep 26, 2003 at 10:42 UTC |