awohld has asked for the wisdom of the Perl Monks concerning the following question:
And my LWP::UserAgent POST method looks like this:<select multiple name=col size=24> <option selected value=KEYID>KEYID <option selected value=CPUTYPE>CPUTYPE <option selected value=INSTANCE_ID>INSTANCE_ID <option selected value=SYSTEM_ID>SYSTEM_ID </select>
How do I add the multiple select list to the POST? Would it be an array?my $response = $browser->post( $intrado, [ "group" => "Chicago", "table" => "CPCFG", ],@netscape_headers ); die "Error: ", $response->status_line unless $response->is_success;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: POST Multiple Select List - LWP::UserAgent
by ikegami (Patriarch) on Sep 22, 2005 at 15:39 UTC | |
|
Re: POST Multiple Select List - LWP::UserAgent
by svenXY (Deacon) on Sep 22, 2005 at 15:41 UTC | |
|
Re: POST Multiple Select List - LWP::UserAgent
by kwaping (Priest) on Sep 22, 2005 at 15:40 UTC |