http://www.perlmonks.org?node_id=64114


in reply to How can I pass number of rows value in psql table into HTML?

If you mean getting the number of row in a table via a DBI access (guessing too) :
A 'select * from yourtable' as a query
and a fetchrow_array would return an array,
you'll only have to count the number of item in this array
(each item is column...)
  • Comment on Re: How can I pass number of rows value in psql table into HTML?