ok so everyone is used to being able to do:
while ($row = mysql_fetch_array($sql_result)) {
$first_name = $row["FirstName"];
$last_name = $row["LastName"];
$home_phone = $row["HomePhone"];
$email = $row["EmailName"];
}
which is my fav way to access the data since you can ref the column names as array keys.
Can someone show how to duplicate this functionality in Oracle using ora_* or oci_* functions? I've been hacking at it getting really frustrated. Thanks in advance.
while ($row = mysql_fetch_array($sql_result)) {
$first_name = $row["FirstName"];
$last_name = $row["LastName"];
$home_phone = $row["HomePhone"];
$email = $row["EmailName"];
}
which is my fav way to access the data since you can ref the column names as array keys.
Can someone show how to duplicate this functionality in Oracle using ora_* or oci_* functions? I've been hacking at it getting really frustrated. Thanks in advance.