Re: [PHP] foreach OCIBindByName()

2001-02-14 Thread Butler, Shaun
On Wednesday 14 February 2001 17:55, you wrote: > On Wed, Feb 14, 2001 at 12:35:10PM +, Butler, Shaun wrote: > > So I want to bind multiple values that are in an associative array > > > > I have this code > > > > > > foreach ($binds as $key=>$value) > > { > >

Re: [PHP] foreach OCIBindByName()

2001-02-14 Thread Thies C. Arntzen
On Wed, Feb 14, 2001 at 12:35:10PM +, Butler, Shaun wrote: > > So I want to bind multiple values that are in an associative array > > I have this code > > > foreach ($binds as $key=>$value) > { > OCIBindByName($this->m_cursor,":$ke

[PHP] foreach OCIBindByName()

2001-02-14 Thread Butler, Shaun
So I want to bind multiple values that are in an associative array I have this code foreach ($binds as $key=>$value) { OCIBindByName($this->m_cursor,":$key",$value,-1); } but it only seems to work for one