Help for this page

Select Code to Download


  1. or download this
      while (($endstore[$ctrend][0],$endstore[$ctrend][1],$endstore[$ctren
    +d][2],$endstore[$ctrend][3],$endstore[$ctrend][4])= my @arr)= $sth2->
    +fetchrow_array() ) {
      my ($field1, $field2, $field3,$field4,$field5)=@arr;
    ...
      print STDOUT "Field 1: $field1  Field 2: $field2  Field 3: $field3 F
    +ield 4:$field4 Field5: $field5\n";
      ++$ctrend;
      }
    
  2. or download this
      while (my @arr = $sth2->fetchrow_array() ) {
        # Keep a copy of the data for future use
    ...
        print STDOUT "Field 1: $field1  Field 2: $field2  Field 3: $field3
    + Field 4:$field4 Field5:$field5\n";
        ++$ctrend;
      }
    
  3. or download this
      while (my @arr = $sth2->fetchrow_array() ) {
        # Keep a copy of the data for future use
    ...
        .            "Field 5: $field5\n";
        ++$ctrend;
      }