Solo para guiarte, alguna de las funciones que seguramente necesitaras...
Código PHP:
Ver original$sql = "query";
$stid = oci_parse($conexion, $sql);
oci_execute($stid);
while ($row = oci_fetch_array($stid, OCI_ASSOC + OCI_RETURN_NULLS)) {
$arreglo[] = $row;
}