Hi!

    I seem to have problem with the odbc_fetch_into function and it seem to
be broken.  It skipped some columns when retrieving data from the two
tables. I didn't have that problem with the previous version of PHP.  I'll
include the sample of the function code for your convience.  Does anyone
have this problem?  Know what hte problem is?  Know hte workaround to it?
The error seem not to be the result of my doing, but of PHP's doing.  Please
no more changing of hte parameter to the odbc_fetch_into function.

--clip--
PHP version 4.0.5
 odbc_fetch_into($result,1,&$user_detail);

PHP version 4.0.6
$row = 1;
 odbc_fetch_into($result,$row,$user_detail);

PHP version 4.2.1
 odbc_fetch_into($result,$user_detail,1);
--clip--

Thanks,
 FletchSOD



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to