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....