hi,
the table that stores the news, should have, at least, a column for the news, and a column with a unique id.
so, in your query, you fetch both the text and that unique id
you show the text, and a delete button next to it
this button has the id associated, for example:
echo ("<a href=\"delete.php?id=$id\">delete news number $id</a>");
// where id is the variable that comes from the database
in delete.php, you have something like this:
$id = $_GET['id'];
// connect to database...
$query = "delete from mytable where id='$id'";