I have a form that looks like this:
<form method="post" action="action.php"> <select id='select' multiple='multiple'> <option value="1"> Option1 <option> <option value="2"> Option2 <option> </select> </form> My problem here is that this code only sends one(the last) option if both Options are selected to the action.php. Is there a way to make it send both options if both are selected? What am i missing?