Node Control Center: $node_id
";
#
# Check to make sure thats this is a valid nodeid
#
$query_result = mysql_db_query($TBDBNAME,
"SELECT * FROM nodes WHERE node_id=\"$node_id\"");
if (mysql_num_rows($query_result) == 0) {
USERERROR("The node $node_id is not a valid nodeid", 1);
}
$row = mysql_fetch_array($query_result);
$node_id = $row[node_id];
$type = $row[type];
$def_boot_image_id = $row[def_boot_image_id];
$def_boot_cmd_line = $row[def_boot_cmd_line];
$next_boot_path = $row[next_boot_path];
$next_boot_cmd_line = $row[next_boot_cmd_line];
echo "\n";
#
# Generate the form.
#
echo "
\n";
?>