awohld has asked for the wisdom of the Perl Monks concerning the following question:
I want to extract the structure below out of the POST method and store it in a variable:my $response = $browser->post( $udr, [ "cellgroup" => "Chicago", "ucl" => "ALL", "table" => "AP", "gotcell" => "no", "col" => [ qw( KEY CPUTYPE INSTANCE SYSTEM ) ], "action" => "Get_Data" ],@netscape_headers );
So my post method looks like:[ "cellgroup" => "Chicago", "ucl" => "ALL", "table" => "AP", "gotcell" => "no", "col" => [ qw( KEY CPUTYPE INSTANCE SYSTEM ) ], "action" => "Get_Data" ]
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Making a Data Structure - Example
by japhy (Canon) on Sep 22, 2005 at 17:23 UTC | |
|
Re: Making a Data Structure - Example
by planetscape (Chancellor) on Sep 22, 2005 at 21:20 UTC |