Hi,
This is my first post, hurray !
I've created a plugin that is displayed when you create or edit a page.
It let the user select from a multiple select the packages he want to be displayed in is new page.
But when I tried to save these infos, I can't retrieve the data from the select. I've got some other textbox and I can save them but nothing comes form my multiple select.
Here is my select:
<select name="includedpackage[]" id="includedpackage" style="width:80%;height:100px; float:left;" multiple="multiple"></select>
And retrieve it with:
$packages = $_POST['includedpackage'];
Thanks a lot !
GP