Informationen über PostgreSQL Cluster
\n";
echo "\t\nSCHEMANAME | \n\t\nTABLENAME | \n\t\nTABLESPACE | \n";
while ($row = pg_fetch_array($result, null, PGSQL_ASSOC)) {
echo "\t\n";
foreach ($row as $col_value) {
echo "\t\t$col_value | \n";
}
echo "\t
\n";
}
echo "\n";
pg_close($dbconn);
?>