Help for this page

Select Code to Download


  1. or download this
    while (my @an = $sth->fetchrow_array) {
         push (@OrderedQuestions, \@an);
    }
    
  2. or download this
    while (my $ran = $sth->fetchrow_arrayref) {
        push (@OrderedQuestions, $ran);
    }