i have the code
$sql = "SELECT title, data FROM news";
$result = mysql_query($sql) or die("<br>Couldn't execute Database request.<br>");
while ($row = mysql_fetch_array($result)) {
echo("<tr>
<td width=\"100%\" background=\"bar.gif\" bordercolor=\"#000000\"><b><font size=\"2\">". $row['title'] . "</font></b></td>
</tr>
<tr>
<td width=\"100%\" bordercolor=\"#000000\"><font size=\"1\"><b>". $row['data'] ."</b></font></td>
</tr>
<tr>
<td width=\"100%\" bordercolor=\"#FFFFFF\" bordercolorlight=\"#FFFFFF\" bordercolordark=\"#FFFFFF\"> </td>
</tr>");
}
mysql_close();
Is there a way of making it read the table in reverse, so it does the things at the bottom of the table first instead of the first thing. So it works backwards