<body bgcolor=#D1E7FE>
<title>Uninstall News Stream</title>
<?
include("configure.php");
$connection = @mysql_connect("$db_server", "$db_name", "$db_password") or
die("The database was not found.");
$db = @mysql_select_db($db_database, $connection) or die("The database was not found.");
$sql2 = "DROP TABLE ns_news";
$result2 = mysql_query($sql2,$connection) or die("There was an error, are you sure you installed <i>News Stream</i>?");
$sql3 = "DROP TABLE ns_display";
$result3 = mysql_query($sql3,$connection) or die("There was an error, are you sure you installed <i>News Stream</i>?");
$sql4 = "DROP TABLE ns_staff";
$result4 = mysql_query($sql4,$connection) or die("There was an error, are you sure you installed <i>News Stream</i>?");
if ($result2) {
$say = "
<font size=4><i>News Stream</I> was uninstalled successfully.</font>
";
}
echo $say;
?>