te faltaria
Código PHP:
<?
$result = mysql_query("select fecha, titular, noticia from tbl_noticia order by fecha desc");
while($sql = mysql_fetch_array($result)) {
}
?>
Y en tu tabla seria asi
Código PHP:
//
<tr>
<td colspan="3"><div align="left"> <? echo ".$sql['titular']." ?> - <? echo ".$sql['fecha']." ?> </div></td>
</tr>
<tr>
<td width="5%"></td>
<td width="83%" bgcolor="#C1FFC1" style="border:1px groove black"><? echo ".$sql['Noticia']." ?> </td>
<td width="5%"></td>
</tr>
</table>
Suerte