hi guys...
i'm writing an access application in which in a page i use a couple of listboxes:
in first one (to the left), i have a list of all the possible functions a user can perform within the system
in the second one (in the right) i have a list of the current functions already assigned to this user
i have a couple of buttons ">" and "<" to move functions from/to the 2 lists
once the administrator is done moving functions from one side to the other, he has an "update" (submit) button, and now i need to read the list in the left and store its contents in a mysql table.
the problems i'm facing right now are as follows:
1) i'm using a javascript function to dinamycally move the elements between the 2 lists; i can't use the brackets to name the lists since the javascript code doesn't allow it
2) in the page i will use to do the mysql update, the array i'm sending as parameter has no element selected, therefore, no element is recognized and the array is treated as empty (i made some testing and, if after all the selection is finished, i highlight the elements, it works fine)
in order to solve both of these problems, is there a way i can use the array in the receiving page, despite of the fact that none of its elements is currently "selected"?
thanks in advance for the help...
ps. if you need more detail, i can post some images to help you understand how the functionality appears right now...