Hi! I want to save all items in a listbox into mysql table. listbox is send through POST. The problem is that I can't access the values of listbox by this way $_POST['listboxname'][0] ...
This way worked $_POST['optionname'] but the problem is I don't know the optionnames in that listbox. they are changing since user can enter new values into the listbox as well as deleting values, and then user press "Save" to send listbox by POST method to php page.

Thank's in advance