Help for this page

Select Code to Download


  1. or download this
        $line = <FILENAME>;
        while ($line ne "")
    ...
            print "$line";
            $line = <FILENAME>;
            }
    
  2. or download this
        while (<FILENAME>)
            {
            print ;
            }
    
  3. or download this
        while (<FILENAME>)
            {
    ...
            last if /<!-- End -->/;
            print ;
            }