i use
$Outer=0;
while( odbc_fetch_row( $sql_result )){
$Outer++;
print "<tr>";
for($i=1; $i <= $Fields; $i++){
printf("<td>%s</td>", odbc_result( $sql_result, $i ));
}
print "</tr>";
}
which gets and prints the info from my DB.... how can i assign a variable to
each of the fields returned
$var1 = row1 data
$var2 = row2 data etc....
like the mysql_fetch_array .... please help as this is driving me up the
wall.
Thanks
Jeremy
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]