in PHP, SimpleXMLElement() can get the value in the XML $xml = new SimpleXMLElement($xml_string); var_dump($xml->author); but what if tag is <openSearch:totalResult>12345</openSearch:totalResult> ? if i var_dump($xml) i won't be able to see anything that contains 12345, so is it possible to get the data? Thanks very much!