my $sql = <prepare($sql); my $rc = $sth->execute(); if (!$rc) { &pl_fatalSQLError($sql,$DBI::errstr); } my $rowArrayref=$sth->fetchall_arrayref({}); # Showing page number with link for(my $i=1;$i<$pagenum;$i++) { print "$i "; } print "
"; # Display result page wise foreach my $row(@$rowArrayref) { print "
".$$row{'column_ID'}; } print "

";