Does anyone have an example on creating an xml file based on data being
pulled from a query?
I have found a few examples (google) but not quite there yet.
The easiest way...
<cfxml variable="myXML">
<things>
<cfoutput query="myQuery">
<thing>#myQuery.myColumn#</thing>
</cfoutput>
</things>
</cfxml>
There's no real trick to creating the XML.
If you're looking for something that turns a query into XML, check
cflib.org.
Adrian
Does anyone have an example on creating an xml file based on data being
pulled from a query?
I have found a few examples (google) but not quite there yet.