Help for this page

Select Code to Download


  1. or download this
    my $xml;
    while (<SITE>) {
        $xml .= $_;
    }
    
  2. or download this
    my $xml;
    {
    ...
       undef $/;
       $xml = <SITE>;
    }