. For more information, visit http://sourceforge.net/projects/ipreg, or contact me at wietsew@users.sourceforge.net *****************************************************************************/ // start page // includes include("includes.php"); // get ip and id $node_ip = sanitize($_GET['node_ip']); $subnet_id = sanitize($_GET['subnet_id']); // start output include("header.php"); // set language variables $smarty->assign($lang); // build query $query = "SELECT subnet_address, subnet_mask FROM subnet WHERE subnet_id=" . $subnet_id; // run query $subnet = $db->db_select($query); // send to tpl $smarty->assign("subnet_id", $subnet_id); $smarty->assign("subnet_address", $subnet[0]['subnet_address']); $smarty->assign("subnet_mask", $subnet[0]['subnet_mask']); $smarty->assign("node_ip", $node_ip); // end page // output $smarty->display("assigniptonode.tpl"); // end output include("footer.php"); ?>