Hi peeps,
Im fairly new to php, and im trying to load an xml source from a remote location, so i have no control of the formatting. Unfortanely the xml file im trying to load has no encoding:
<ROOT xmlns:sql="urn:schemas-microsoft-com:xml-sql"> <NODE> </NODE> </ROOT>
When trying something like:
$doc = new DOMDocument( );
$doc->load(URI);
I get:
Input is not proper UTF-8, indicate encoding ! Bytes: 0xA3 0x38 0x2C 0x38
Ive looked at ways to supress this, but no luck. How should i load this so that I can use it with DOMDocument?
Thanks!