I have a form which inserts data into a mysql database. One of the fields on the form is a list box with 6 options. I know you can send these variables to the database by using [], but it puts the words "array" in the field. Is there a way for it to put the actual variable name in the field, ex?
<select name="ProgName[]" multiple="multiple" style="font-family: arial; font-size: 10pt size="5">
<option value="All">All Travel & Learn Programs</option>
<option value="CWC">Civil War Conference</option>
<option value="Jeff">Jefferson Symposium</option>
<option value="Shakespeare">Shakespeare Seminar</option>
<option value="OXF">UVA Seminars at Oxford, England</option>
</select>
How can I get the actual value (All, CWC, etc.) placed in the mysql table instead of the word "array"?