RE: [INTERFACES] newbie question about PHP

From: "Jackson, DeJuan" <djackson(at)cpsgroup(dot)com>
To: Steve Doliov <doliov(at)statsol(dot)com>, pgsql-novice(at)postgreSQL(dot)org
Cc: pgsql-interfaces(at)postgreSQL(dot)org
Subject: RE: [INTERFACES] newbie question about PHP
Date: 1998-06-24 15:25:46
Message-ID: F10BB1FAF801D111829B0060971D839F2F3C8E@cpsmail
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

try:
pg_Connect("host=localhost user=$username password=$password port=5432
dbname=SomeDatabase") //[Note the lack of commas.]
-DEJ

> -----Original Message-----
> From: Steve Doliov [SMTP:doliov(at)statsol(dot)com]
> Sent: Tuesday, June 23, 1998 11:22 PM
> To: pgsql-novice(at)postgreSQL(dot)org
> Cc: pgsql-interfaces(at)postgreSQL(dot)org
> Subject: [INTERFACES] newbie question about PHP
>
> 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 Steve Doliov 1998-06-24 19:13:54 still can't connect to postgres vi PHP3.0
Previous Message David Hartwig 1998-06-24 13:35:01 Re: [INTERFACES] ODBC Failure