I have an XML file that needs to be edited. The file is:
<Status Doc>
<P1>
<ClientID> </ClientID>
<Status> </Status>
</P1>
<P2>
<ClientID> </ClientID>
<Status> </Status>
</P2>
<P3>
<ClientID> </ClientID>
<Status> </Status>
</P3>
</Status Doc>
I can get the data that's in P3 only, but how would I edit the client ID and status for P3?
When I try it, all of the entries change to the same value.
Or is there a better format to use?
JB