I fixed the initial problem but now I'm stuck with this function. No matter what I try I can't edit the option values (last line) to hold the users selections when the form is submitted. Could there be somewhere I'm not looking if its not done in here?
I'm basically trying to add something like
<?php if (($_REQUEST[$value]) == $value) echo 'selected'; ?>
function print_option($variable, $value, $display, $id=NULL)
{
$display = html_value($display);
$selected = ($variable == $value) ? " selected=\"selected\"" : '';
$value = form_value($value);
$id = ($id) ? "id=\"${id}\" " : '';
echo "<option ${id}value=\"{$value}\"{$selected}>{$display}</option>\n";
}
Any ideas? :queasy: