Hi,

I receive several warnings calls from PHP when using the next code :

ocibindbyname($insert,":NEC_SEQ",&$NEC_SEQ,12);

I used this code because I found it in several example and the PHP manual. What does the warning mean? What do I have todo about it?

Thanks.
Warning: Call-time pass-by-reference has been deprecated - argument passed by value; If you would like to pass it by reference, modify the declaration of ocibindbyname(). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. However, future versions may not support this any longer. in /home/neck001/webpage/neck.php on line 42

    Remove di \'&\' symbol from the function call...

    ocibindbyname($insert,\":NEC_SEQ\",$NEC_SEQ,12);

      Write a Reply...