Help for this page

Select Code to Download


  1. or download this
    $useragent = LWP::UserAgent->new;
    $request = HTTP::Request->new(GET, $url);
    $response = $useragent->request($request);
    $response_text = $response->as_string();
    print $response_text;