| Author: sivangari 07 Jul 2008 | Member Level: Gold | Rating: Points: 6 |
HI,
The characters "&" and "<" are reserved in XML as what are called "open markup delimiters" -- that is, they are the characters recognized by XML processors as indicating that what follows is markup, not data. Hence they can't be used as plain characters.
XML provides for character references, which you can use to work around this. For "<" use the reference "<" (that's "& l t ;" for those with overzealous email clients) and "&" (that's "& a m p ;") for "<" and "&" respectively
|