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.
41 lines
1.3 KiB
41 lines
1.3 KiB
<?php
|
|
include("header.php");
|
|
|
|
// get id
|
|
$node_id = $_GET['node_id'];
|
|
|
|
// set template
|
|
$tp = new Template("tpl/nodeedit.tpl");
|
|
|
|
// set language variables
|
|
$tp->setvars($lang);
|
|
|
|
// get node info
|
|
$result = mysql_query("SELECT a.asset_name, n.ip, n.mac, n.dns1, n.dns2, n.subnet_id, n.node_info FROM asset a, node n WHERE node_id='$node_id' AND a.asset_id=n.asset_id") or die(mysql_error());
|
|
$row = mysql_fetch_object($result);
|
|
$subnet_id = $row->subnet_id;
|
|
$tp->set("node_id", $node_id);
|
|
$tp->set("asset_name", $row->asset_name);
|
|
$tp->set("ip", $row->ip);
|
|
$tp->set("mac", write_mac($row->mac));
|
|
$tp->set("dns1", $row->dns1);
|
|
$tp->set("dns2", $row->dns2);
|
|
$tp->set("node_info", nl2br($row->node_info));
|
|
|
|
// get subnet info
|
|
$result = mysql_query("SELECT subnet_id, subnet_address, subnet_mask FROM subnet ORDER BY INET_ATON(subnet_address)") or die(mysql_error());
|
|
for ($i=0;$row=mysql_fetch_object($result);$i++) {
|
|
if (($row->subnet_id==$subnet_id) ? $tp->set("selected", "selected") : $tp->set("selected", ""));
|
|
$tp->set("subnet_id", $row->subnet_id);
|
|
$tp->set("subnet_address", $row->subnet_address);
|
|
$tp->set("subnet_mask", $row->subnet_mask);
|
|
$tp->parse("subnetrow");
|
|
}
|
|
if (($i>0) ? $tp->parse("subnet") : $tp->hide("subnet"));
|
|
|
|
// output
|
|
$tp->parse();
|
|
$tp->spit();
|
|
|
|
include("footer.php");
|
|
?>
|