in reply to MySQL / Perl Question
Also, DBIx::Recordset has support for generating this the HTML navigation code, complete with embedded previous-next query bind parms.my $query = 'SELECT a_column from table"; my $dbh = however_you_connect; my $sth =$dbh->do($query); my $rows_per_page = 10; my $pages = $sth->rows / $rows_per_page;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: MySQL / Perl Question
by Anonymous Monk on Nov 10, 2001 at 21:33 UTC | |
by princepawn (Parson) on Nov 10, 2001 at 22:40 UTC |