OK, it's not the table's or rows or cells or anything.... something to do with my code... unless it's access
$sql = "SELECT id,sub,createdBy,createDate FROM msg_board ORDER BY id DESC";
$pointer = odbc_exec($db,$sql);
while (odbc_fetch_into($pointer,&$rowdata)) {
list($id,$sub,$createdBy,$createDate) = $rowdata;
echo "<FONT FACE=verdana SIZE=2><A HREF='view_msg.php?id=$id'>$sub</A></FONT><BR>
<FONT COLOR=darkblue><B>$createdBy</B></FONT><BR>
<FONT COLOR=darkblue SIZE=1>$createDate</FONT><BR>";
$sql = "SELECT reply_id,r_sub,r_createdBy,r_createDate FROM reply WHERE id = $id";
$pointer2 = odbc_exec($db,$sql);
while (odbc_fetch_into($pointer2,&$rowdata2)) {
list($reply_id,$r_sub,$r_createdBy,$r_createDate) = $rowdata2;
echo "<FONT FACE=verdana SIZE=2> <A HREF='msg.php?reply_id=$reply_id'>$r_sub</A></FONT><BR>
<FONT COLOR=darkblue><B>$r_createdBy</B></FONT><BR>
<FONT COLOR=darkblue SIZE=1>$r_createDate</FONT><BR>";
}
}