 
			
				09/06/2008, 18:11
			
			
			     |  
      |    |    |    Fecha de Ingreso: junio-2008  
						Mensajes: 53
					  Antigüedad: 17 años, 4 meses Puntos: 1     |        |  
  |      Como leer este Array = ARAY($ROW[0], $ROW[1], $ROW[2])        hola, me estoy iniciando en esto de la POO en PHP   
y tengo este codigo   
function trae_todos() { 
		$retorno = array(); 
		$this->query->sql = "SELECT "; 
		$this->query->sql .= "ID_COMP, NOMBRE_COMP, DESCRIP_COMP "; 
		$this->query->sql .= "FROM COMPETENCIAS"; 
		$this->query->ejecuta_sql();   
		while( $row = $this->query->fetch_array() ) { 
			$retorno[] = array($row[0], $row[1], $row[2]); 
		}   
	return $retorno; 
	}   
necesito saber como mostrar el contenido del array $retorno   
el codigo de $this->query->fetch_array() es el siguiente, haber si aclara algo mas el tema    
function fetch_array() { 
		$row = array();   
		if( $this->fbool ) { 
			//return oci_fetch_array($this->fcursor); 
			OCIFetchInto($this->fcursor, $row); 
		}; 
        return $row; 
	}   
ayuda por favor....           |