Retrieving all tuples from the artist table
\n";
while ($line = pg_fetch_array($result, null, PGSQL_ASSOC)) {
echo "\t\n";
foreach ($line as $col_value) {
echo "\t\t$col_value | \n";
}
echo "\t
\n";
}
echo "\n";
// Free resultset
pg_free_result($result);
// Closing connection
pg_close($dbconn);
}
?>