Thanks for your help guys. I'm learning more and more every day! I'm already designing my own plugins and tools. If I figure out how to export them and do the whole process to make them their own thing I might be able to release one!
--------------- Added [DATE]1406422797[/DATE] at [TIME]1406422797[/TIME] ---------------
figured I'd keep this one to ask again.
I am creating a form in the ACP to update a table one of my forum systems uses. I successfully get the correct info when I click the edit button, but the form that shows up is not selecting the proper options for my selection items even though I have passed the info one. Code below.
PHP Code:
$ugame = mysql_fetch_row($result);
// print_r(array_values($ugame));
print_form_header($this_script, 'update');
print_table_header('Update Game');
// print_select_row('Main Game', 'mgame', $currentgames, $ugame[1]);
echo "<input type='hidden' name='game' value='$egame'>";
print_input_row('Abbreviation', 'abbrev', $ugame[2]);
print_input_row('Account Name', 'acctname', $ugame[3]);
print_select_row('Account Profile Field', 'proffield', $fields, (string)$ugame[4]);
print_select_row('Game Status', 'status', $gamestatuses, (string)$ugame[5]);
print_submit_row('Update Game');
Figured it out. Contrary to what vBulletin documentation says it does NOT want a string to determine the selected option, it wants what corresponds to the VALUE of that list item.