Help for this page

Select Code to Download


  1. or download this
    sudo perl -MCPAN -e shell
    look Net::SSLeay
    perl Makefile.PL -t
    make install
    
  2. or download this
    #!/usr/bin/perl
    use LWP::Simple;
    my $url ='https://www.paypal.com'; #Notice the s in httpS
    my $content = get $url;
    print $content;