Having trouble even getting started trying to use XML in PHP. I can't seem to even get past getting the XML read.
I've tried something simple like this;
<?
$str = <<<XML
<?xml version=1.0 encoding=utf-8?>
<RequestMessage>
<PartnerId>ID</PartnerId>
</RequestMessage>
XML;
$xmlobj = simplexml_load_string($str);
var_dump($xmlobj);
?>
This results in - bool(false).
This seems so simple but I can't get past it no matter how simple I try and make the XML.