in reply to Re: php arrays to perl
in thread php arrays to perl
well, it says missing data text1. thats the problem it cant get text1 data
my $ua = HTTP::Tiny->new; my $url = "link"; my $param = { text1 => 'text0', text2 => 'text01', text3 => 'text02', }; my $params = $ua->www_form_urlencode( $param ); my $response = $ua->post( $url . '/?' . $params );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: php arrays to perl
by tobyink (Canon) on May 16, 2017 at 11:49 UTC | |
by bigup401 (Pilgrim) on May 16, 2017 at 12:10 UTC | |
|
Re^3: php arrays to perl
by Corion (Patriarch) on May 16, 2017 at 11:49 UTC | |
by Anonymous Monk on May 16, 2017 at 16:47 UTC | |
by marto (Cardinal) on May 17, 2017 at 10:31 UTC |