Help for this page

Select Code to Download


  1. or download this
    $/ = "----- PAGE SEPARATAAAR -----\n";
    while (<>) {
        chomp;
        # $_ now contains the HTML page
    }
    
  2. or download this
    my $page = '';
    while (<>) {
    ...
        }
        $page .= $_;
    }