I have xml data like this
<users>
<user email="[email protected]">
<password>pass</password>
..
</user>
</users>
I want to retrieve the user's record (xml format) filtering by email and password. I have tried
for $user in doc("users")/user
[@email="'.$email.'"]
[password="'.$password.'"]
return $user
but I get errors.
Please, how can I retrieve that user's data in xml format so that I can use something like domdocument or simplexmlparser to get the respective nodes?
My reference was http://www.w3schools.com/xsl/xpath_syntax.asp
You would probably want to combine the constrains to one single constraint
This could also be achieved in one go by:
HTH,
Peter