Exclude form fields from cfloop
Is there anyway to exclude some form fields while looping over others? If I could just not loop over certain form fields on the action page it would be perfect. Not sure if this is possible. I am passing items from the form and appending or deleting them to a list....but I don't want all of the form fields to do this.
Right now the code is:
<cfloop list="#form.fieldnames#" index="i" delimiters=",">
Doing functions in here to append, delete items from the form into a list.
</cfloop>
