Warning: mysql_fetch_assoc(): 3 is not a valid MySQL result resource in C:\Inetpub\wwwroot\BMF\Web\news.php on line 63
Records 1 to 2 of 2
<table width="355" height="50" border="0" align="left">
<tr>
<td><strong>Date</strong></td>
<td><strong>Subject</strong></td>
</tr>
<?php do { ?>
<tr>
<td> <a href="details.php?recordID=<?php echo $row_news['id']; ?>"> <?php echo $row_news['date']; ?> </a> </td>
<td> <?php echo $row_news['subject']; ?> </td>
</tr>
<?php } while ($row_news = mysql_fetch_assoc($news)); ?> //line 63
</table>