Re: HTML FORMS selected question

From: Chris <dmagick(at)gmail(dot)com>
To: Mag Gam <magawake(at)gmail(dot)com>
Cc: Randy Moller <zoomerz(at)comcast(dot)net>, pgsql-php(at)postgresql(dot)org
Subject: Re: HTML FORMS selected question
Date: 2006-12-04 00:25:59
Message-ID: 45736B17.3020909@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

Mag Gam wrote:
> Chris + Randy:
>
> Sorry, I may of forgetten to give you this:
> $result = pg_query($dbconn, "select id,address from ip");
>
> This is right before the:
> $options=pg_fetch_array($result_ip);
>
> so, my $results is really all the ip addresses ($rows after I perform
> the pg_fetch_array).
>
> I will add the var_dump to see it (never done it before, I will do some
> googling :) )

After your query add it:

$result = pg_query(....)
var_dump($result);

if that's not a "resource" then you have a problem with your query. Use
pg_last_error to work it out.

Inside your loop, add it:

while ($row = pg_fetch_array($result)) {
var_dump($row);
}

--
Postgresql & php tutorials
http://www.designmagick.com/

In response to

Browse pgsql-php by date

  From Date Subject
Next Message operationsengineer1 2006-12-04 17:59:11 Re: HTML FORMS selected question
Previous Message Randy Moller 2006-12-04 00:23:25 Re: HTML FORMS selected question