need xml select query!
-
I need the xml select query code to search a special productID from my xml page. For example i need to get the productID and productName that has productID= "124" Just a little working query sample would be enough for me sample. Here is my xml file: <?xml version="1.0" encoding="utf-8"?> <products> <product> <productID>123
-
I need the xml select query code to search a special productID from my xml page. For example i need to get the productID and productName that has productID= "124" Just a little working query sample would be enough for me sample. Here is my xml file: <?xml version="1.0" encoding="utf-8"?> <products> <product> <productID>123
-
Hi there, The sample XPath looks something like
product[productID = "124"]
. For more information, see XPath Examples [^]Thank you very much..;) --junior coder--