in reply to Re: url get with string
in thread url get with string
i tried it bt failed. lets say if the link is like this
$fname = "john"; $lname = "doe"; $ctry = "canada"; my $req = HTTP::Request->new(GET => 'https://www.google.com/?firstname +=$fname&lastname=$lname&country=$ctry')
but works with no $ string
my $req = HTTP::Request->new(GET => 'https://www.google.com/?firstname=john&lastname=deo&country=canada')
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: url get with string
by Corion (Patriarch) on Mar 23, 2017 at 09:11 UTC | |
|
Re^3: url get with string
by hippo (Archbishop) on Mar 23, 2017 at 09:11 UTC |