Help for this page

Select Code to Download


  1. or download this
    while( my $line = <TEMPLATE> ) {
        $outputpage .= $line;
    }
    
  2. or download this
    my @lines = <TEMPLATE>;
    foreach my $line (@lines) {
        $outputpage .= $line;
    }