in reply to LWP/Post with several arguments
my $data = [PROGRAM => $PROGRAM, etc...]; my $action = 'http://baygenomics.ucsf.edu/db/cgi-bin/blast/blast.cgi'; my $res = $ua->request(POST($action, $data)); if ($res->is_success) { print $res->content; } else { print "Error: ", $res->status_line, "\n"; }
gav^
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: LWP/Post with several arguments
by scain (Curate) on Mar 04, 2002 at 21:22 UTC | |
by theguvnor (Chaplain) on Mar 04, 2002 at 22:02 UTC |