The entity "nbsp" was referenced, but not declared.
I'm trying to create xml fron a database table.
This is the code to create the xml file:
<cfxml variable="xPageContent">
<PageContent>
<cfoutput query="qStuff">
<page>
<id>#qStuff.PageContentID#</id>
<description>#qStuff.PageContentDesc#</description>
<header>#qStuff.PageContentHeader#</header>
</page>
</cfoutput>
</PageContent>
</cfxml>
If I take out this line <header>#qStuff.PageContentHeader#</header>
it works fine. The header entrys in the database are paragraphs with html code in them here is one of them
<p><a href="3d-floor-plans.html"> 3D floor plans</a><br /> <a href="Interior-Stills.html"> Interior Stills</a><br /> <a href="Exterior-Stills.html"> Exterior Stills</a><br /> <a href="Animation.html"> Animation</a><br /> <a href="Interactive-3D.html"> Interactive 3D</a><br /> </p>
a <cfdump> will output all selected table entries without problem. It's only when try to reated the xml file that I have a problem.
