$option) {
//if (!in_array($option,$vars['value'])) {
if (is_array($vars['value'])) {
if (!in_array($option,$vars['value'])) {
$selected = "";
} else {
$selected = "checked = \"checked\"";
}
} else {
if ($option != $vars['value']) {
$selected = "";
} else {
$selected = "checked = \"checked\"";
}
}
$labelint = (int) $label;
if ("{$label}" == "{$labelint}") {
$label = $option;
}
echo "
";
}
?>