Help for this page

Select Code to Download


  1. or download this
    sub write1 {
        my $STH = shift;
        while ( @data=$STH->fetchrow_array() )
    ...
            print "<FONT COLOR='white'>";
        }
    }
    
  2. or download this
     sub write1 {
        foreach my $STH ($STH1, $STH2, $STH3) {
            while ( @data=$STH->fetchrow_array() )
    ...
            }
        }
    }