I'm building a theme options page for my WordPress theme and I would like to have a functionality to select multiple items from a list.
The "one option" select code I use looks like this: http://pastie.org/684800 and it works perfectly.
I'm a PHP newbie so I tried to modify the above code to achieve the result I want. Here's what I came up with: pastie.org/684804. As you can see, I basically added a some html values multiple="yes" hoping it will work ;)
The code displays the select item properly, but seems to only save the last selected one. Could someone please give some advice on how to achieve saving multiple chosen items?

multiple="yes"is not correct. Some browsers may allow it, butmultiple="multiple"is actually the correct way. – Ben James Nov 5 at 14:51