(PHP 4, PHP 5)
odbc_fetch_into — Fetch one result row into array
$result_id
   , array &$result_array
   [, int $rownumber
  ] )Fetch one result row into array.
   Returns the number of columns in the result;
   FALSE on error.
  
Example #1 odbc_fetch_into() examples
<?php
$rc = odbc_fetch_into($res_id, $my_array);
?>
or
<?php
$rc = odbc_fetch_into($res_id, $my_array, 2);
?>