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 runtime function name. 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
how do fix it?
i edited allow_call_time_pass_reference=yes or allow_call_time_pass_reference=true
didn't work.
i am on win2kpro. thx
Are you trying to pass a reference as a function argument?? If so, when you declare your function, you must declare your reference also, something like:
function someFunc(&$ref, $regular_var) { // do some stuff ... }