Unlike mysql_fetch_assoc, all indexes of associative array are upper-case.
so, use
$row = ibase_fetch_assoc($result);
echo $row["INDEX"];
not
echo $row["index"];
![]() |
|
||||||||||
|
ibase_fetch_assocDescriptionarray ibase_fetch_assoc ( resource result [, int fetch_flag] )ibase_fetch_assoc() returns an associative array that corresponds to the fetched row. Subsequent calls will return the next row in the result set, or FALSE if there are no more rows.
ibase_fetch_assoc() fetches one row of data from the
See also ibase_fetch_row() and ibase_fetch_object(). ibase_fetch_assoc
karasek ... ceskyserver - dot - cz
26-Apr-2005 12:37
Unlike mysql_fetch_assoc, all indexes of associative array are upper-case.
sir_fred@
13-Dec-2003 06:34
If your php is older than version 4.3.0, you can use the following: |