So, I have this XML document:
<?xml version="1.0" encoding="UTF-8"?> <Root> <Item> <URL>http://www.mysite.com/page?id=1</URL> </Item> </Root>
When I try to view a document, I get an error message:
XML parsing error: malformed
on the = sign in the query string. I tried to change the = sign to %3D , but I get the same error in %
What am I supposed to do here?
source share