newbie question about PHP

From: Steve Doliov <doliov(at)statsol(dot)com>
To: pgsql-novice(at)postgresql(dot)org
Cc: pgsql-interfaces(at)postgresql(dot)org
Subject: newbie question about PHP
Date: 1998-06-24 04:22:15
Message-ID: 35907EF7.E8527FA7@statsol.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

i am trying to connect to a database using webpages with embedded php3.0

postmaster is running with the -i option
the database is running with the -u option
the web user is nobody, and user nobody has select privileges on
the given database.
from the shell, i can access the database as user nobody
$ psql -u mydatabase
Username: nobody
Password: xxxx
mydatabase=>
---------------
<?PHP
$conn = pg_Connect("localhost", "5432", "user=nobody,password=demo",
"", "grocery");
if (!$conn) {
echo "An error occurred.\n";
exit;
}
....
?>

this is what resulting page says:

Warning: Unable to connect to PostgresSQL server: User authentication
failed in
/home1/s/statsol/public_html/test/test.phtml on line 21
An error occurred.

my user=,password= is obviously a hack, i am just looking for how to
specify it for the pgoptions part of the pg_connect; help with the
syntax would be much appreciated.

thanks,
steve doliov

Browse pgsql-interfaces by date

  From Date Subject
Next Message Michael Yeung 1998-06-24 04:31:25 ODBC Failure
Previous Message Len Morgan 1998-06-23 23:55:35 DBD Question