> I am using the folling code to list all of my tables in a database:
> however, i would like to show the user how many rows there are in each
table
> (where i have put numrows), how could i do this?

This will be costly on process time, but you could just do a SELECT COUNT(*)
on all the tables. If you find a way to do it with a simple PHP command
(without a self-made function), I'd love to know.


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to