Re: web interface php3 question.

From: "Adam Lang" <aalang(at)rutgersinsurance(dot)com>
To: "Rich(dot)Martin" <Rich(dot)Martin(at)wcom(dot)com>, <pgsql-interfaces(at)hub(dot)org>
Subject: Re: web interface php3 question.
Date: 2000-10-30 18:42:03
Message-ID: 012101c042a1$18928fc0$330a0a0a@6014cwpza006
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

It should work with version 3. Are there 7 rows of data in the table? It
might not let you call it if the row doesn't exist.

http://php.net/manual/function.pg-fetch-array.php

Adam Lang
Systems Engineer
Rutgers Casualty Insurance Company
----- Original Message -----
From: "Rich.Martin" <Rich(dot)Martin(at)wcom(dot)com>
To: <pgsql-interfaces(at)hub(dot)org>
Sent: Monday, October 30, 2000 1:19 PM
Subject: [INTERFACES] web interface php3 question.

> Hello,
> I'm trying to setup a web page that calls a PostgreSQL database. I'm
> connecting to the database ok. Does anyone know if php3 support
> pg_fetch_array? I keep getting an error that says:
>
> Warning: Wrong parameter count for pg_fetch_array() in
> /home/contacts/whole.phtml on line 72
>
> I'm calling it in the code like this:
>
> while ($r = pg_fetch_array($result)) {$company = $r["company'];
>
> if I add a another variable like this:
>
> while ($r = pg_fetch_array($result, 7)) {$company = $r["company'];
>
> the resulting page takes forever to load and repeats the first entry to
the
> database. I know that the server I'm using has php3 on it. Is that the
> problem?
>
> If you have a solution please let me know.
> Thanks,
> Rich

In response to

Browse pgsql-interfaces by date

  From Date Subject
Next Message Chris Jones 2000-10-30 20:16:51 PG JDBC bug?
Previous Message Rich.Martin 2000-10-30 18:19:23 web interface php3 question.