Hi,
I am new to xml. I have an xml file: see below:
--------
<?xml version="1.0" encoding="utf-8"?>
<UserList>
<User id="login" password="password" userType="Admin">
<Customer name="<ALL>" />
</User>
<User id="username" password="password">
<Customer name="aaa" />
<Customer name="bbb" />
</User>
</UserList>
--------
What i want to do is to create a basic form in fronpage that has three boxes (username password and verify password) and a submit button.
So all i want is to be able to put the username and the password in twice (for verification reasons), click submit and then the data gets appended to the xml file.
Basically this is to save my staff from having to edit the xml file and also gives them a more user friendly interface to adding users.
Any help would be much appreciated.
Cheers
I am new to xml. I have an xml file: see below:
--------
<?xml version="1.0" encoding="utf-8"?>
<UserList>
<User id="login" password="password" userType="Admin">
<Customer name="<ALL>" />
</User>
<User id="username" password="password">
<Customer name="aaa" />
<Customer name="bbb" />
</User>
</UserList>
--------
What i want to do is to create a basic form in fronpage that has three boxes (username password and verify password) and a submit button.
So all i want is to be able to put the username and the password in twice (for verification reasons), click submit and then the data gets appended to the xml file.
Basically this is to save my staff from having to edit the xml file and also gives them a more user friendly interface to adding users.
Any help would be much appreciated.
Cheers