I'm trying to create an admin page that allows an admin to edit, activate, or inactive users. The format I have in my head is to have a select list size 10 on the left for the active users, and another identical select list on the right for the inactive users. To give a basic format:
active1 < inactive1
active2 EDIT USER inactive2
active3 > inactive3
Where both the active list and inactive list are select boxes, and the < EDIT > are buttons that post to php. The php would post back to the php panel if the < > buttons are pressed, but post to a different page for the EDIT USER button.
I am running into problems with this, which should be obvious. IE allows a selection to be active on both windows. So if I select an active and inactive, how do I reconcile which should be edited or moved?
So problem number one is, how do I (or can I) create two select boxes and only allow one to be selected at a time.
Second, Chrome is not even allowing me to select anything from the inactive list. Maybe that gets sorted out if I do things correctly off the bat.