I have a XML file with this structure. (many more users in it)
Code:
<users>
<user>
<counter>1000000</couter>
<voornaam>Maarten Liesbet</voornaam>
<achternaam>Verheyen</achternaam>
<geslacht>M</geslacht>
<nummerplaat>EEC-718</nummerplaat>
<naam>test</naam>
<adres>
</adres>
<email>
</email>
<telefoon>
</telefoon>
<sitebed>
</sitebed>
<datum>14/05/2008</datum>
<uur>10:13:30</uur>
<logoff>0:00:00</logoff>
<kaartnummer>590258076812</kaartnummer>
</user>
</users>
I have a form with a textfield. In the texfield a number can be entered. (counter)
and then I want the logoff time adjusted.
So the programme has to navigate to the correct node with the corresponding counternumber(xpath???) and then change the element "logoff" to the time of the moment (logoff = TimeOfDay)
Is this even possible ?
thanx in advance