Help for this page

Select Code to Download


  1. or download this
    my $data;
    for($x=0; $x<$sth->rows; $x++) { 
    ...
      $data = $sth->fetch_hashref; 
      my $this = $data->{id}; 
    }
    
  2. or download this
    my $prev;
    while (defined my $data = $sth->fetchrow_hashref) {
    ...
    
      $prev = $data;
    };