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