Ok dokie!
I make selections from one large select list, then add them to one smaller select list. No problem.
Problem is that only the last item selected is posted.
Now I know if I name the select as : name[] it declares an array and all the selcted options are posted, however, JS doesn't like that syntax, at least I don't think it does, since I'm getting null error notices when i use it.
naming example is:
<form name="f1" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>">
<select name="chosen" multiple="multiple" size="10" id="TEST">
Thanks in advance,
Pete
I make selections from one large select list, then add them to one smaller select list. No problem.
Problem is that only the last item selected is posted.
Now I know if I name the select as : name[] it declares an array and all the selcted options are posted, however, JS doesn't like that syntax, at least I don't think it does, since I'm getting null error notices when i use it.
naming example is:
<form name="f1" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>">
<select name="chosen" multiple="multiple" size="10" id="TEST">
Thanks in advance,
Pete