The oci_fetch_array() call now returns the data indexed both
numerically and associatively. The Oracle guide was written prior to
this change in PHP. The doc writer has been informed of the
correction:
Change code line, adding "OCI_ASSOC+", to read:
while ($row = oci_fetch_array($stid, OCI_ASSOC+OCI_RETURN_NULLS)) {
This is due to PHP's fix for
http://bugs.php.net/bug.php?id=37487
-- cj