How Can We Help?
DOMDocument = Represents an entire HTML or XML document; serves as the root of the document tree. (PHP 5)
DOMDocument::createElement() = Create new element node. (PHP 5)
Now to the solution!
Solution:
- Use the htmlentitites function to convert all applicable characters to HTML entities.
- $dom->createElement(‘value’, htmlentities($text_value));
- htmlentitites = Convert all applicable characters to HTML entities (PHP 4, PHP 5)
Problem should be solved!