<?php include("../includes/session.php");?>
<?php include("../includes/config.php"); ?>
<?
if(!is_admin()) {
echo '<a href="/login.php">Sorry please login as a administrator</a>';
exit;
}
?>
<?
/* Process Scrportt To Delete ports from the database */
mysql_connect ($shelldb_host, $shelldb_user, $shelldb_pass);
mysql_select_db ($shelldb_db);
$delete = mysql_query ("DELETE FROM ports
WHERE port_id = '$port_id'
");
if (mysql_affected_rows() != 1)
{
echo "There was a error", mysql_error();
exit;
}
echo "The port ID Number is:-";
echo "$port_id";
echo '<A href="/index.php">Deletion of port<h2></h2> Successfull Click Here</A>';
?>