Hi!
Very simple question:
If I have searchform where is
<form action="array.php" method="post">
Beer: <br>
<select multiple name="beer[]">
<option value="warthog">Warthog
<option value="guinness">Guinness
<option value="stuttgarter">Budweiser
</select>
<input type="submit">
</form>
How can I get all those three different beer label out from array? If user selects two labels how can I search with them? Now my result page displays only last selections results.
So how can I get stuff out from array?