When I try to insert the selections into the table, multiple selections get put into one field. I would like multiple selections to each be a record in the table.
If your question has not yet been answered...<br>
<br>
You need to loop through the list. I created a series of checkboxes with a vlue of the primary key...<br>
<br>
Then on the action page, loop through them and perform your desired action...<br>
<br>
This will loop through all checkboxes named approve and simply output AID each time. Your action will be an insert up update or whatever...<br>
<br>
<cfloop index="AID" list="#approve#"><br>
<br>
<CFOUTPUT><br>
#AID#<br>
</CFOUTPUT><br>
<br>
</cfloop><br>
<br>
Hope this helps,<br>
Jon
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.