RE: [PHP] FATAL call to undefined function pg_query()

2002-05-30 Thread Ford, Mike [LSS]
-Original Message- From: Steve G [mailto:[EMAIL PROTECTED]] Sent: 29 May 2002 13:47 To: [EMAIL PROTECTED] Subject: Re: [PHP] FATAL call to undefined function pg_query() I'm using 4.0.6. That would explain it... So how does one using 4.0.6 perform a query on a postgres

Re: [PHP] FATAL call to undefined function pg_query()

2002-05-29 Thread Steve G
that question. -steve - Original Message - From: Jason Wong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, May 28, 2002 11:17 PM Subject: Re: [PHP] FATAL call to undefined function pg_query() On Wednesday 29 May 2002 11:37, Steve G wrote: Fatal error: Call to undefined function

Re: [PHP] FATAL call to undefined function pg_query()

2002-05-29 Thread Jason Wong
On Wednesday 29 May 2002 20:47, Steve G wrote: I'm using 4.0.6. That would explain it... So how does one using 4.0.6 perform a query on a postgres database? I think it's pg_exec. However, my manual is for the newest versions of PHP. Is the syntax the same? Is there an older manual out

[PHP] FATAL call to undefined function pg_query()

2002-05-28 Thread Steve G
Hello, I don't know exactly why I'm getting this output: Fatal error: Call to undefined function: pg_query() in /var/www/html/steve/frontdoor.php on line 42 I can successfully connect to my db using: $link = pg_connect (host=localhost dbname=$dbname user=$user); And I even get the proper

Re: [PHP] FATAL call to undefined function pg_query()

2002-05-28 Thread Jason Wong
On Wednesday 29 May 2002 11:37, Steve G wrote: Fatal error: Call to undefined function: pg_query() in /var/www/html/steve/frontdoor.php on line 42 but for some reason pg_query gives me an undefined function. What gives?? Is this function not valid? The manual says it is.. I think my