\n";
print " | \n";
print "{$row['id']} | \n";
print " | \n";
$type = $row['type'];
print "";
$option_value = $row['value'];
if ($row['option_id']==29) { $option_value='********'; }
if (!isset($option_value)) {
$option_value = get_option($db_link, $row['option_id']);
set_option($db_link, $row['option_id'], $option_value);
}
if ($type == 'int') {
$min = '';
$max = '';
if (!empty($row['min_value']) or $row['min_value']==0) { $min="min=".$row['min_value']; }
if (!empty($row['max_value'])) { $max="max=".$row['max_value']; }
print "";
}
if ($type == 'text') {
print "";
}
if ($type == 'bool') {
print_qa_select("f_config_value[]", $option_value);
}
print " | \n";
print "".$row['description']." | \n";
print " | \n";
print "
\n";
}
?>