You are trying to send POST data like it was GET data.
Try this:
my $ua = HTTP::Tiny->new; my $url = "link"; my $param = { text1 => 'text0', text2 => 'text01', text3 => 'text02', }; my $response = $ua->post_form($url, $param);
In reply to Re^3: php arrays to perl
by tobyink
in thread php arrays to perl
by bigup401
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |