in reply to Data Aggregation
my $response = $agent-> post($url, $formsYou did not declare a variable named "forms". Are you trying to use your %form hash? From the documentation of LWP::UserAgent, it looks like you could pass an array reference to post. Try:
my $response = $agent-> post($url, [ "country" => $countries[$i], "years1%5B%5D" => $years[0], "c_tab" => '0', "idbtable" => '0' ]);
what is with the painfully slow page load time? Is it just me? Or does everyone have this problem?It's not just you.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Data Aggregation
by hodge-podge (Novice) on May 06, 2010 at 01:34 UTC | |
by bv (Friar) on May 06, 2010 at 02:17 UTC |