Help for this page

Select Code to Download


  1. or download this
          $line = <FILENAME>;
          while ($line ne "")
    ...
              print "$line<BR>";
              $line = <FILENAME>;
              }
    
  2. or download this
         while (<FILENAME>) {
              print "<BR> $_";
         }