I'm working with this XML data, and I'm trying to loop through the Order elements within the OrderArray element.
I'm able to target the elements using this:
$ebay_orders = $DOM->getElementsByTagName("Order");
This returns the number of Orders in the array, for example:
DOMNodeList Object ( [length] => 2 )
It's been awhile since I've worked with XML like this, and I'm struggling to remember how I can get into these Order Elements and pull individual element values (ie. OrderID, OrderStatus, etc.)
Any information on this would be greatly appreciated. Thanks!