Help for this page

Select Code to Download


  1. or download this
    while(<PAGE>)
    {
    ...
         }
    }
    close(PAGE);
    
  2. or download this
    start
    end
    
  3. or download this
    while($_ = <PAGE>)
    {
    ...
         }
    }
    close(PAGE);
    
  4. or download this
    my $line;
    while($line = <PAGE>)
    ...
         }
    }
    close(PAGE);