Linuc Posted September 4, 2014 Share Posted September 4, 2014 Hi, I am trying to access the value for Admin1 as per using PHP Dom: <domain:contact type="admin">Admin1</domain:contact> I tried many varients, like: $admin = $doc->getElementsByTagName('contact')->item(0)->childNodes->getElementsByTagName('type')->item(0)->nodeValue; No luck. Any advise would be appreciated. Link to comment https://forums.phpfreaks.com/topic/290862-php-xml/ Share on other sites More sharing options...
CroNiX Posted September 4, 2014 Share Posted September 4, 2014 It's namespaced, so you need to use getElementsByTagNameNS() http://php.net/manual/en/domdocument.getelementsbytagnamens.php Link to comment https://forums.phpfreaks.com/topic/290862-php-xml/#findComment-1490005 Share on other sites More sharing options...
Linuc Posted September 5, 2014 Author Share Posted September 5, 2014 I have tried getElementsByTagNameNS(), can you possibly provide an example? Link to comment https://forums.phpfreaks.com/topic/290862-php-xml/#findComment-1490044 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.