It appears that in the windows version of PHP 4.3.2 they have re-enabled a non-functioning ODBC_FETCH_ARRAY again.......
Will this ever be fixed?
To make matters worse, I have about 100+ calls to a function called ODBC_FETCH_ARRAY which I defined, and now have to change to a different name........
Any ideas on doing somethign like
IF (function_exists(odbc_fetch_array))
{ return; }
ELSE
{
function odbc_fetch_array()
yada yada yada
}