I'm having a problem getting the results of a select
multiple, as it does not come with any name when it comes to an example compound name.
<form action="/action_page.php">
<select name="cars" multiple>
<option value="volvo">Volvo teste</option>
<option value="saab">Saab verifica</option>
<option value="opel">Opel mais</option>
<option value="audi">Audi</option>
</select>
<input type="submit">
</form>
But when I get the return response it only appears:
"Volvo", "Saab", "Opel" e "Audi"
The compound part of the name is not appearing. It was to appear in my result if I select "Volvo Test" and not just "Volvo".