toolman Posted December 4, 2013 Share Posted December 4, 2013 Hi, I am trying to insert some HTMl into an XML document, but its not working. I am trying to add it in the <your_message> tag. Any ideas how I can do this? <?xml version="1.0" encoding="UTF-8"?> <your_card> <your_message> my message here </your_message> </your_card> Thanks Link to comment https://forums.phpfreaks.com/topic/284516-html-in-xml-document/ Share on other sites More sharing options...
Ch0cu3r Posted December 4, 2013 Share Posted December 4, 2013 Wrap the html within CDATA sections. <?xml version="1.0" encoding="UTF-8"?> <your_card> <your_message> <![CDATA[ your html here ]]> </your_message> </your_card> Link to comment https://forums.phpfreaks.com/topic/284516-html-in-xml-document/#findComment-1461248 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.