Hello I have an existing picklist that i am trying to tweak - I am making it into a multiselect and trying to return multiple values
I have been able to accomplish the first part by adding select ‘multiple’ but when i submit it only returns results for the last value selected.
Here is the code for the form (Left out the picklists that do not need to be multiple select)
Status: | <? $statuslist=$ObjReport->ObjStatus->get_Status_List(); while($status=mysql_fetch_object($statuslist)) { if($status->Status=="Please Select") { ?> Status==$_REQUEST['Status']?"selected=selected":"")?>> <?=$status->Status?> <? } else { ?> Status==$_REQUEST['Status']?"selected=selected":"")?>> <?=$status->Status?> <? } } ?> | Submit |