Hello everyone,
I have an HTML form where on of the items is multiselect box where a user may select one or more items on the list.
How would I use PHP to process what has been selected by the user and save the selection in a MySQL database field called department?
How would I use PHP to display on an HTML from what is stored in MySQL database field called department?
E.g. HTML Form
<select name="department[]" size="3" multiple="true">
<option value="finance">Finance</option>
<option value="operation">Operation</option>
<option value="marketing">Marketing</option>
Thank you,
asfaw