Help for this page

Select Code to Download


  1. or download this
    my @data = (); 
    while (@data = $sth->fetchrow_array){
     print TSCH join(' ',@data),"\n";
    }
    
  2. or download this
    while (my @data = $sth->fetchrow_array){
     print TSCH join(' ',@data),"\n";
    }
    
  3. or download this
    Use of uninitialized value%s 
      (W uninitialized) An undefined value was used as if it were 
      already defined. It was interpreted as a "" or a 0,  but maybe
      it was a mistake. To suppress this warning assign a 
      defined value to your variables.