You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
554 B
23 lines
554 B
<?php
|
|
include("header.php");
|
|
|
|
// display only if admin
|
|
if($_SESSION['suser_level'] >= 2) {
|
|
|
|
$node_id = $_GET['node_id'];
|
|
|
|
// get asset id
|
|
$result = mysql_query("SELECT asset_id FROM node WHERE node_id='$node_id'") or die(mysql_error());
|
|
$asset_id = mysql_result($result, 0, "asset_id");
|
|
|
|
// delete node
|
|
mysql_query("DELETE FROM node WHERE node_id='$node_id'") or die(mysql_error());
|
|
|
|
// redirect
|
|
header("Location: assetview.php?asset_id=" . $asset_id);
|
|
|
|
// end display only if admin
|
|
}
|
|
|
|
include("footer.php");
|
|
?>
|