<? require_once("../conn.php");
require_once("access.php");
$id=$_GET['id'];
$sql= "delete from yellow_news where newsid='$id'";
mysql_query($sql);
header("Location: Managenews.php");
exit;
?>