
Zhris
User
May 16, 2011, 6:07 AM
Post #2 of 6
(2017 views)
|
|
Re: [zafar] why the "get" does not bring
[In reply to]
|
Can't Post
|
|
Hi, Firstly, its best to assign the complete url to a seperate variable, otherwise Perl can have difficulty figuring out what is meant to be interpolated and what isn't in a string.
my $url = $f->{srv_htdocs_url} . '/index.html'; my $res = $ua->get($url); This will possibly solve your issues. Chris
(This post was edited by Zhris on May 16, 2011, 6:24 AM)
|