load DOMDocument with HTML Special Characters (php)

Four20

New Member
i have a problem to load a xml-file with php. I use DOMDocument, because i need the function \[code\]getElementsByTagName\[/code\].
I use this code. \[code\]\[code\]$dom = new DomDocument('1.0', 'UTF-8');$dom->resolveExternals = false;$dom->load($_FILES["file"]["tmp_name"]);\[/code\]\[/code\]\[code\]\[code\]<?xml version="1.0" encoding="UTF-8"?><Data> <value>1796563</value> <value>Verliebt! &rsquo;</value></Data>\[/code\]\[/code\]ErrorMessage:
Warning: DOMDocument::load() [domdocument.load]: Entity 'rsquo' not defined in /tmp/php1VRb3N, line: 4 in /www/htdocs/bla/upload.php on line 51
 
Back
Top