help !!!

From: "Alxander A(dot) Kapralov" <sasha(at)province(dot)ru>
To: pgsql-php(at)postgresql(dot)org
Subject: help !!!
Date: 2002-06-17 10:17:30
Message-ID: 3D0DB73A.2050108@province.ru
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-php

function PaperList () {
global $db;
$str = "select gazeta.id as i,gorod.id as ig,trim(gazeta.name,'
') as gaz_n, trim(gorod.name,' ') as gor_n from gazeta,gorod where
gazeta.id_gorod=gorod.id order by gazeta.name asc;";
$result = pg_Exec( $db, $str );
if ($result = pg_Exec( $db, $str ) != false && ($num =
pg_numrows($result)) ) {
for ($i = 0; $i < $num; $i++) {
$r = pg_fetch_object($result, $i);
^^^^^ -- here get error message
echo "<OPTION VALUE=$r->i> $r->gor_n / $r->gaze_n\n";
};
};
};

Supplied argument is not a valid PostgreSQL result resource in ib.inc
Can any one explain that !!!!

Responses

Browse pgsql-php by date

  From Date Subject
Next Message Keary Suska 2002-06-17 16:29:12 Re: Getting array variables from my postgresql function
Previous Message Chris 2002-06-16 22:52:21 Re: