<?php
  $dbconn = pg_connect("dbname=publisher") or die("Could not connect");
  // Assume 'title' is a varchar type
  $res = pg_query($dbconn, "select title from authors where author = 'Orwell'");
  echo "Title field type: ", pg_field_type($res, 0);
?>
     
    The above example will output:
Title field type: varchar