Return XML Object
This part of creating the xml is done, what I am trying to accomplish now is to out the xml data with all the xml tags to the screen.
If I do a dump I could see the records but when I try to output the NumsAll to the screen it does not look good and appears on big horizontal lines
<cfxml variable="NumsAll">
<Nums>
<cfoutput query="rs">
<Num>
<id>#id#</id>
<oid>#oid#</oid>
<short><![CDATA[#Trim(short)#]]></short>
<long><![CDATA[#Trim(long)#]]></long>
<Imp>#Trim(Imp)#</Imp>
<cnt>#Trim(cnt)#</cnt>
<cnt2>#Trim(cnt2)#</cnt2>
</Num>
</cfoutput>
</Nums>
</cfxml>
