Help...below is a some PHP code that works well except I can not get it to display the data from both "NAME" fields from the two tables. This isn't msaccess is it Toto.....
$sqlQuery = "SELECT a.NAME, b.NAME";
$sqlQuery .= " FROM REPORT a, AUTHOR_INFO b";
$sqlQuery .= " WHERE a.AUTHOR_KEY = b.AUTHOR_KEY";
$sqlQuery .= " ORDER BY a.NAME ASC LIMIT ".$limit;
$result = mysql_query($sqlQuery);
$numRows = mysql_num_rows($result);
?>
<?php
if ($numRows > 0) {
while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
?>
<table cellspacing="0" cellpadding="5" class="formTable">
<tr>
<td class="headerT">Date: <br /><br /></td>
<td class="cellT" valign="top"><?= $row['NAME'] ?></td>
</tr>