I need a good way to select multiple categories and when they're submitted, parse them. I plan on having a few dozen categories, so checkboxes would be cumbersome to say the least.
Now I thought that a <select multiple> tag would let me actually return more than one answer, but hell if I can figure out how.
Erhm... in other words, I need something like this:
Code: Select all
<select multiple='multiple' name='cats'>
<option>one</option>
<option>two</option>
<option>three</option>
</select>As it stands, the above will only return the highest--lowest in the code--option selected.
What am I missing?
Edit: It works fine in $_GET, but not $_POST, which is most certainly what I'm going to need. :/