4
How can I return multiple attributes using the xpath language? For example this xml:
<utilizador>
<nome>Rui</nome>
<contacto>91xxxxxxx</contacto>
<localidade>Viseu</localidade>
<cesto>
<encomenda refidprod="rlg05" estado="enviado" data="13-01-2014"/>
<encomenda refidprod="hifi02" estado="enviado" data="1-10-2014"/>
</cesto>
<cestohist>
<encomendas refidprod="tv02" estado="entregue" data="29-11-2014"/>
</cestohist>
<utilizador>
How to return the values of the attributes of the orders, both basket and basket?
Cumpz
Thank you, that’s just what I needed.
– fedora