How do you find table names in postgres from a query in php?
I want to create a script which will dump a db schema... but cant figure out how to grab the table names.
any suggestions?
From the postgresql manual: http://www.postgresql.org/idocs/index.php?catalogs.html
The pg_class catelog is what you want.