<?php $document = new DOMDocument; $document->loadXML(file_get_contents('example.xml')); $nodeList = $document->getElementsByTagName('errtext'); $item = $nodeList->item(0); echo $item->nodeValue;