I have a lot of wrongs embedded HTML tags inside XML.
like this:
<?xml version="1.0" encoding="UTF-8"?>
<main>
<note>
<category>computers</category>
<id>1</id>
<price>47072.00</price>
<description>
<p>Warranty - 24<br />Product model code - N150
Plus <br />
</description>
</note>
</main>
I need to insert between tags this code..to read the XML file using PHP
.
like this:
<description>
<![CDATA[<html
...HTML CODE IS HERE
]]>
</description>
use
file_get_contents()to open xml file as array.