<html>
<head>
<title>Lista de Noticias</title>
</head>
<body>
<?
//LISTA DE NOTICIAS
$RsNoticias=mysql_query("select * from noticias order by idnoticia desc");
?>
<table cellspacing="1" class="tlb_contenido" id="tlb_contenido">
<tr>
<th>Eliminar</th>
<th>Titulor</th>
<th>Noticia</th>
</tr>
<?
while($registro=mysql_fetch_array($res))
{
?>
<tr>
<!-- aqui esta la (x) para eliminar -->
<th><a href="eliminar.php?id=<? echo($registro[idnoticia])?>"><img src="ico_eliminar.png"/></a></td>
<td><? echo($registro["titulo"]) ?></td>
<td><? echo($registro["noticia"]) ?></td>
</tr>
<? } //fin del bucle?>
</table>
</body>
</html>