That shouldn't be there (sorry).
Parse error on line 11 now.
Also tried ...
<?php
// create connection
$dbDatabase = " ";
$dbServer = " ";
$dbPort = " ";
$dbUserName = " ";
$dbPassword = " ";
$connection = pg_connect ( "dbname=$dbDatabase host=$dbServer port=$dbPort user=$dbUserName password=$dbPassword" );
$query = "create table test (
ID int(5) DEFAULT '0' NOT NULL auto_increment,
PRIMARY KEY(ID)
)";
$query_result = pg_exec ($connection, $query);
?>
And hey, thanks for getting back to me so fast on this all the time!