well, i have this:
<?php $connect = odbc_connect('DSN-name', 'Username', 'Password') or die ("unable to connect");
$query = "SELECT * FROM Title" ;
$result = odbc_exec($connect, $query);
while($row = odbc_fetch_array($result)) {
$TitleID = $row[TitleID];
$Title = $row[Title];
echo $Title; }?>
and the 1st part seems to work, but for the second part i get this:
Call to undefined function: odbc_fetch_array()
I am using a system dsn, so that works. ( note that you can never use a user dsn. those only respond to a user that directly opens the DB AND that user MUST be logged on/in. This does NOT apply to system DSNs)