I need to create a multidimensional array from a database query. This is an Oracle query and I do not believe the OCI interface has a function to create a two-dimensional array. I imagine it is something like this:
while ($row = oci_fetch_array($stid, OCI_RETURN_NULLS)) {
<do something to create two dimensional array>
}
TIA.