santosh_vjit has asked for the wisdom of the Perl Monks concerning the following question:
Actually im expecting $response to conatin the array structure which is returned from sample.php file. Can u please suggest if there is any other way to get that array structure .my $ua = LWP::UserAgent->new; $ua->timeout(120); $HA_HTTP_GET_URL .= htt://10.0.x.x/ui/sample.php; my $response = $ua->get($HA_HTTP_GET_URL); if ($response->is_success) { $HA_HTTP_GET_TRY_COUNT = 0; } else { $HA_HTTP_GET_TRY_COUNT++; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Passing or returnin php array to Perl
by Anonyrnous Monk (Hermit) on Dec 20, 2010 at 13:13 UTC | |
|
Re: Passing or returnin php array to Perl
by samarzone (Pilgrim) on Dec 20, 2010 at 14:11 UTC |