Additions:
http://msdn.microsoft.com/en-us/library/ms256471.aspx
Deletions:
Additions:
http://msdn.microsoft.com/en-us/library/ms256086.aspx
Additions:
php dom xpath makes it very each to find and select elements / nodes in an xml document
=====select nodes=====
=====select nodes by attribute=====
or select all nodes that have the attribute 'editable' with the value 'false'
$nodes = $xp->query("//*[@editable='false']");
=====select nodes=====
=====select nodes by attribute=====
or select all nodes that have the attribute 'editable' with the value 'false'
$nodes = $xp->query("//*[@editable='false']");
Additions:
>>http://www.ibm.com/developerworks/library/x-xpathphp/index.html
http://www.php.net/manual/en/class.domxpath.php
http://www.w3schools.com/xpath/
http://www.php.net/manual/en/class.domxpath.php
http://www.w3schools.com/xpath/