Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    use LWP::Simple;
    
    my $page = get("http://server/data.php");
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    
    my $page = qx|lynx --nolist --source http://server/data.php|;