Hi all,
The problem i have is in declaring variables the values of which i will be able to access throughout my whole application (Global). No matter the class of which the function derives.
I tried doing it with namespace but the namespace can only be accessed by the members of the class...
I am using LWP to make HTTP Requests to a page that is supposed to redirect me somewhere. how can i see where does it redirect me?
Here is my code:
use strict;
use warnings;
use LWP 5.64;
my $browser = LWP::UserAgent->new;
my $content = $browser->post($url,
[
'name'=> "kathas"
])...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.