Function ShowResults($result) {
if ($result) {
$rows = pg_NumRows($result);
$cols = pg_NumFields($result);
echo( "\n");
/* Create the headers */
echo( "\n");
for($i = 0; $i < $cols; $i++) {
printf( "%s \n", pg_FieldName($result, $i));
}
echo( " ");
for($j = 0; $j < $rows; $j++) {
echo( "\n");
for($i = 0; $i < $cols; $i++) {
printf( "%s \n", pg_result($result, $j, $i));
}
echo( " ");
}
echo( "
");
} else {
echo(pg_errormessage);
}
}
?>