Re: Vexing PHP problem - browser hangs.

From: Joe Conway <mail(at)joeconway(dot)com>
To: Lynna Landstreet <lynna(at)gallery44(dot)org>
Cc: pgsql-php(at)postgresql(dot)org
Subject: Re: Vexing PHP problem - browser hangs.
Date: 2003-07-16 21:14:39
Message-ID: 3F15C03F.2080108@joeconway.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

Lynna Landstreet wrote:
> for ($row = 0; row < pg_numrows($artist_list); $row++) {

Make this line read:
for ($row = 0; $row < pg_numrows($artist_list); $row++) {

Note the missing "$" on row at "row < pg_numrows".

HTH,

Joe

In response to

Browse pgsql-php by date

  From Date Subject
Next Message Lynna Landstreet 2003-07-16 21:28:59 Re: Vexing PHP problem - browser hangs.
Previous Message Frank Bax 2003-07-16 21:09:57 Re: Vexing PHP problem - browser hangs.