I am having some issues with special characters while reading in an XML file, using PHP's XML libraries.
For instance, characters like &, or ' get cut off.
<TagName>This & That</TagName>
The data returned will be " That". Any data before the character gets cut off.
At first I tried replacing & says with their HTML entity. That didn't do much good as every HTML entity has an ampersand.
Has anyone ever had this issue before? How did you get around it?
Thanks,
Lang