Changed database access to PDO using prepared statements
This commit is contained in:
@@ -17,31 +17,10 @@ include("header.php");
|
||||
|
||||
$smarty->assign("node_ip", $node_ip);
|
||||
$smarty->assign("asset_id", $asset_id);
|
||||
$smarty->assign("subnet_id", $subnet_id);
|
||||
|
||||
$query = "SELECT
|
||||
asset_id,
|
||||
asset_name
|
||||
FROM
|
||||
asset
|
||||
ORDER BY
|
||||
asset_name";
|
||||
|
||||
$assets = $db->db_select($query);
|
||||
foreach ($assets as $asset) {
|
||||
$asset_options[$asset['asset_id']] = $asset['asset_name'];
|
||||
}
|
||||
$smarty->assign("asset_options", $asset_options);
|
||||
|
||||
$query = "SELECT subnet_id,
|
||||
CONCAT_WS('/', subnet_address, subnet_mask) AS subnet_name
|
||||
FROM subnet
|
||||
ORDER BY INET_ATON(subnet_address)";
|
||||
|
||||
$subnets = $db->db_select($query);
|
||||
foreach ($subnets as $subnet) {
|
||||
$subnet_options[$subnet['subnet_id']] = $subnet['subnet_name'];
|
||||
}
|
||||
$smarty->assign("subnet_options", $subnet_options);
|
||||
$smarty->assign("asset_options", db_get_options_asset());
|
||||
$smarty->assign("subnet_options", db_get_options_subnet());
|
||||
|
||||
$smarty->display("assignnodetoasset.tpl");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user