im trying to output an xml file and having some troubles with this one section
im assuming its because the field may contain html formatted info but i have even tried it with cdata but still i get this error.

Illegal XML character: �.  
Illegal XML character: �.

i been up too  long to rack my brain tonight, any help?

<cfquery name="news" datasource="#dsn#" username="#un#" password="#pw#">
SELECT *
FROM news
ORDER BY newsID DESC
</cfquery>

<CFXML variable="newsXML">

<News>
<cfoutput query="news">
<newsID>#news.newsID#</newsID>
<title>#news.title#</title>
<content>#news.content#</content>
<pic>#news.pic#</pic>
<update>#news.update#</update>
</cfoutput>
</News>

</CFXML>

<cffile
action=""> file="#ExpandPath('xml/news.xml')#"
output="#ToString(newsXML)#">
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to