Help for this page

Select Code to Download


  1. or download this
    while(defined($rivi = <ROWS>)) {
         chomp $rivi;
         ....
    }
    
  2. or download this
    open(E,">>style1.txt") or die $!;
    print E "$rivi\n"; # not understanding why you have $text here
    close(E);