This code should display the dropdown of available prefixes, although for me it doesn't seem to register whatever choice is made...
Quote:
Originally Posted by bananalive
You could use custom question for this:
PHP Code:
require_once(DIR . '/includes/functions_prefix.php'); $prefix_options = fetch_prefix_html($form['forumid'], $q["$formbit[id]"], true); $answer = '<select name="q_' . $formbit[id] . '" id="q_' . $formbit[id] . '" class="bginput">'; $answer .= '<option value="">'.$vbphrase[no_prefix_meta].'</option>'; $answer .= $prefix_options; $answer .= '</select>';
|