RE: [PHP] PHP warning with 4.2

2002-08-09 Thread Ford, Mike [LSS]
> -Original Message- > From: PHP List [mailto:[EMAIL PROTECTED]] > Sent: 08 August 2002 19:14 > > Hi, after upgrading to 4.2, I seem to be getting this warning: > > PHP Warning: Call-time pass-by-reference has been deprecated > - argument passed by value; If you would like to pass it

Re: [PHP] PHP warning with 4.2

2002-08-08 Thread Nick Oostveen
You should be able to fix this by changing the function DECLARATION for the argument in question to take the variable by reference instead of by value (which is the default). So it should be something like: OCIFetchInto ( $var1, &$rvar2, $var3 ) What you are currently doing is specifying at