Hello,
I have a form that passes variables to a query.
The form has this:
<select size="7" name="selecttown" multiple>
<option value="a">a</option>
<option value="b">b</option>
<option value="c" selected>c</option>
<option value="d">d</option>
The script query has this in place:
WHERE town like '$selecttown'
The goal is for my user to select multiple towns...but the query only finds the result for the very first town in the list. How can I get multiple towns?