Help for this page

Select Code to Download


  1. or download this
    while (my @res = $sth->fetchrow_array()) {
        @res = map { defined ? $_ : '' } @res;
        $worksheet->write_row($i, 0, [@res]);
        $i++;
    }