How do I process multiple selections from a list box?

My list box is populated with values from a query (see code), and I want the
user to be able to select one or more values. I then want to insert the
values selected into an Oracle table, along with the user's ID, which is
determined elsewhere.

Sorry if this is a newbie question, but I can't find ANY info on this topic.
Thanks.


<cfquery datasource="cdev" name="get_del_locn" debug="yes">
select dlo_id, dlo_locn
from del_locn
order by dlo_locn
</cfquery>
...
<select name="dlo_id" size ="5" multiple width="150">
<cfoutput query="get_del_locn">
<option value="#dlo_id#">#dlo_locn#
</cfoutput>
</select>


~~~~~~~~~~~~~~~~~~~~~~~~
Ricq Pattay <[EMAIL PROTECTED]>



------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to