Prueba con este código a ver si te funciona:
Código PHP:
Ver original<?php
conectar_mysql();
if($_POST["borrar"]) {
mysql_query("DELETE * FROM noticias WHERE id_noticia='{$_POST['id']}'"); }
$consulta = mysql_query("SELECT * FROM noticias order by id_noticia desc");
<div>
<p>
<strong><?php echo $reg['titulo_noticia']; ?></strong><br />
<span>Publicado el <?php echo $reg['fecha']; ?></span>
</p>
<p>
<?php echo $reg['noticia']; ?>
</p>
<form method="post">
<input type="hidden" name="id" value="<?php echo $reg['id_noticia']; ?>">
<input type="submit" name="borrar" value="Borrar" />
</form>
</div>
<?php }
?>