When the user selects from the option menu it passes $company_id to the script.
I'm dynamically populated the option menu from the database as follows:
print "<option value=$column[COMP_NAME_ID]>$column[COMP_NAME] ($column[COMP_NAME_ID])</option>\n";
How would I select the value based on the user's choice so they see what they've selected once the form has been submitted?
For example, the selected option would be:
<option selected value=3092929>Company 34</option>
Thanks!
Dave