Help for this page

Select Code to Download


  1. or download this
    use LWP;
    use LWP::UserAgent;
    use LWP::Protocol::https;
    
  2. or download this
    my $connect = new LWP::UserAgent;
    my $request = new HTTP::Request 'POST', 'https://secure.directnic.com/
    +myaccount/myaccount.php';
    my $response = $connect->request($request);
    
    print $response;
    
  3. or download this
    print $response;
    
  4. or download this
    print $response->content;
    print $response->as_string;