Output data in XML format using XML

yarmaa

New Member
I am doing some programming in XML where I need to return data in a table but it needs to be formatted in XML as well.\[code\]<TABLE> <BORDER> tbNone </BORDER> <COLUMNHEADER> <ALIGNMENT> "<~" </ALIGNMENT> <WIDTH> PageWidth </WIDTH> <TEXT> "<request>" </TEXT> </COLUMNHEADER> <ROW> "<trans" </ROW> <ROW> "versionOfTransaction" "=" ""v2.53"" </ROW> <ROW> "transactionNumber" "=" ""001000021"" </ROW> ...</TABLE>\[/code\]I need it to print the following but it always tells me I have some illegal tokens. It looks like its getting stuck at the equals or quotes\[code\]<request><transversionOfTransaction="v2.53"transactionNumber="001000021"\[/code\]Later I will also need to print data from XML that will need to be in the format\[code\]<text><![CDATA[ some stuff ]]></text>\[/code\]And I've read I cant have nested CDATA. Any help would be super. I've spent the afternoon on Google and nothing has helped.Thanks
 
Back
Top