can we loop xml with dynamic values...
This is what I am trying
<cfloop index="i" from="1" to="13" step="1">
<cfxml variable="data">
<records>
<record>
<Number>#i#</Number>
<SKU>#Form["sku_" & i]#</SKU>
<Quality>#Form["qty_" & i]#</Quality>
<Description>#Form["product_" & i]#</Description>
</record>
</records>
</cfxml>
<cfset XMLText=ToString(data)>
<cffile action="APPEND" file="#ExpandPath('order.xml')#" output="#XMLText#">
</cfloop>
I can see only last varables upload into xml not all 13 its only 13...
