MarkR wrote:XML is not a database server
Boom! Thanks for pointing that out - Would hope it was already done by the time I got here 🙂
Do not attempt to use XML as a form of database - thats not what its designed for.
XML allows systems/websites/components to communicate over a common language.
For example, if you asked me to send you a list of my contact details, I could create an xml file:
<contact>
<name>Andrew</name>
<phone>123456</phone>
</contact>
And, even from looking at that file yourself - you can tell what the information is. You could then tell your computer to store my name in the contact/name tag of the XML file.
Whereas, if you had a file like this:
andrew 123456
You have no idea what context those values have, this is where XML is used.
You would NOT use XML to act as a database, rather, to communicate information amongst people/systems which both humans and computers may understand and is flexable.