Firstly I would create a little javascript, so if you click the Delete link, a little screen would popup asking if you really want to delete or not. The link should be something like:
<a href="delete.php?newsID=<? echo $row['newsID']; ?>">
(remember to include the little javascript in the link with the help of an onClick function)
In your delete.php the code could look something like this:
include "common.php";
connectDatabase($dbHost, $dbUser, $dbPass, $dbName);
@mysql_query("delete from news where newsID = '$newsID'");
mysql_query("close");
header("Location:***link to your db-table***");
exit;
Of course I may have used different variables than you do, but that's something you can change of course 🙂