Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re^3: php arrays to perl

by tobyink (Canon)
on May 16, 2017 at 11:49 UTC ( [id://1190370]=note: print w/replies, xml ) Need Help??


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

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1190370]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (1)
As of 2024-04-19 00:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found