i would like to use domdocument. is that a way for it??
if im not wrong, i have to first select getElementsByTagName() then use childNodes??
$elem = $xmlDoc->getElementsByTagName('Entity')->item(0);
$children = $elem->childNodes;
foreach ($children as $child) {
echo $child->getAttribute('Item'); //im not getting any result here
}
but im not getting any result..