View Single Post
  #11 (permalink)  
Old 09-06-2007, 09:21 AM
vivekanandan vivekanandan is offline
D-Web Trainee
 
Join Date: Jul 2007
Posts: 41
vivekanandan is on a distinguished road
Default Re: XML to php posting issue

Hi,
This is tips for searching the xml content fastly by using Xpath mainly used in stype sheet.


$oDomDoc = new DomDocument;
$oDomDoc->loadXML($str);
$xpath = new DOMXPath($oDomDoc);
$xpath->preserveWhiteSpace = false;
$result = $xpath->query("//Root/Element");
foreach($result as $node )
{
print "<br>". $node -> getAttribute("Name");
}

Regards,
vivekanandan
Reply With Quote