I tried to make xml-files with the php-module DOMXML, It's working very good. but all the html-special-chars are escaped from my database content.
My database:
+-----------------------------+
| text |
+-----------------------------+
| Some <EM>Content</EM> |
+-----------------------------+
But when I parsed this to XML, I got this:
<?xml version="1.0"?>
<Root>
<Text>Some <EM> Content </EM></Text>
</Root>
How can I fix this problem