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