in reply to Re^2: php arrays to perl
in thread php arrays to perl

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);

Replies are listed 'Best First'.
Re^4: php arrays to perl
by bigup401 (Pilgrim) on May 16, 2017 at 12:10 UTC

    thanks tobyink, it was helpful worked