I am trying to access the postgresql database using the foll: php script:
<?php $connection=pg_Connect ("","","","","mydb"); ?>
When i read this page through netscape, i get the following error message dialogue box from netscape..
The document contained no data.
Now when i change the name of the database from "mydb" (which is created) to any other name of database that has not being created, the file does get read and i get the error that the databse is not in pg_database.
I even tried the script:
<?php
$connection = pg_Connect ("dbname=mydb port=5432 user=myuid");
?>
The database is created, granted access to the user myuid, myuid is added to authorized postgres user, but still i get the same error dialogue box message of "the document contained no data"
Really would appreciate any help provided...
thanks..
Amit