Question
Cannot loop over struct formfields
This appears in my dump var:
struct
ACTIONupdateRecordsListings
FIELDNAMESITEMORDER[],ACTION
ITEMORDER[]558,559,536,478,469,468,466,465,464,397,191,11,175
I cannot get it to work to loop over the itemorders and output them. I know it's simple but cannot get it to work.
Here's my code:
<cfloop index="i" from="1" to="#ArrayLen(form)#">
<cfoutput>
#form.itemorder#
</cfoutput>
</cfloop>
Thank you very much in forward.
