<?
$query = "SELECT ID,Data FROM notizie ORDER BY ID DESC";
$result = mysql_query($query, $db);
mysql_fetch_array($result);
?>
<tr>
<td>News --- <? echo $row["Data"] ?></td>
</tr>
</table>

Così?