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: Mon, 04 Dec 2006 11:25:59 +1100
- Message-id: <45736B17.3020909@gmail.com> <text/plain>
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/
Home |
Main Index |
Thread Index