Voy a probar con lo que Vallu, a ver si hay suerte.
Aquí te dejo el código.
Código PHP:
<?
//recibimos la variable $id
$id=$_POST[id];
include ("conex.php");
//borramos los registros pertenecientes a la id
mysql_query("delete from noticias where id_noticia='$id'",$connect);
echo mysql_errno($connect) . ": " . mysql_error($connect). "\n";
?>