Bacteria Man
2005-02-28 19:12:17 UTC
I'm trying to collect the values from an html form array. For example: <input
type='text' name='order[3]' value='4'> <input type='text' name='order[7]'
value='5'> <input type='text' name='order[9]' value='8'> I then attempt to
convert the array to a list: <cfif isdefined('form.order')> <cfset arrOrder
= arraytolist(form.order, ',')> <cfoutput>#myList#</cfoutput> </cfif>
ColdFusion doens't recognize the form array. Thanks in advance.
type='text' name='order[3]' value='4'> <input type='text' name='order[7]'
value='5'> <input type='text' name='order[9]' value='8'> I then attempt to
convert the array to a list: <cfif isdefined('form.order')> <cfset arrOrder
= arraytolist(form.order, ',')> <cfoutput>#myList#</cfoutput> </cfif>
ColdFusion doens't recognize the form array. Thanks in advance.