İki etiketleri arasına XML içinde göm özel etiketler

0 Cevap php

I have a lot of wrongs embedded HTML tags inside XML. gibi bu:

 <?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&nbsp;<br />            
            </description>      
   </note> 
</main>

I need to insert between tags this code..to read the XML file using PHP .

gibi bu:

<description>
       <![CDATA[<html
        ...HTML CODE IS HERE

        ]]>
</description>

0 Cevap