I am trying to connect to a remote server running Postgres
<?
$conn_string = "host=localhost port=5432 dbname=test user=test";
$conn = pg_connect($conn_string) or die("Connect Error");
?>
but I got this ---
Call to undefined function: pg_connect() in c:\program files\apache group\apache\htdocs\test\test.php on line 4
Can anyone help!!!