Help for this page

Select Code to Download


  1. or download this
    $k = 0;
        while (@results = $sth->fetchrow_array()) {
            $data[$k] = [ @results ];
            $k++;
        }
    
  2. or download this
    while($results = $sth->fetchrow_array_ref()) {
        push @data, $results;
    }