i got this little warning
PHP 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 ocifetchinto(). 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.
my code is
$DBC=ocilogon($uid,$passwd,$sid);
$sqlstr=\"SELECT ...\";
$stmt=ociparse($DBC,$sqlstr);
OCIFetchinto($stmt,&$row,OCI_ASSOC+OCI_RETURN_NULLS);
anyone know what\'s wrong? there is nothing being mention in php.net about depreciating this function!
thanks