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 |