can anyonme give me an idea of how to catch (using PHP) multiple values from a multi ‘selectbox’ please?
<select name="auto_issue_update" multiple>
<option>1</option>
<option>2</option>
</select>
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Make the name have brackets on the end to distinguish it as an array
Then on the PHP side, you would do something like (if you’re using POST for your form. swap POST for GET if you’re not)