I am using http://dingyonglaw.github.com/bootstrap-multiselect-dropdown/#forms to display a dropdown with multiple check boxes.
<li>
<label>
<input type="checkbox" name="filters" value="first value">
<span>First Value</span>
</label>
</li>
<li>
<label>
<input type="checkbox" name="filters" value="second value">
<span>Second Value</span>
</label>
</li>
This is the resulting URL:
http://example.com/search?filters=first+value&filters=second+value
On Server side (bottle):
terms = unicode (request.query.get ('filters', ''), "utf-8")
will give me only "second value" and ignore "first value". Is there a way of collecting all the 'filters' values?