Definition: XML is an acronym for eXtensible Markup Language. It is
- A human readable way of describing structured data.
- A human readable way of describing data.
<dataset>It is similar in structure to HTML, the language of web pages but contains no presentation information and is very strict about closing off tags.
<record>
<name>David</name>
<age>47</age>
</record>
</dataset>
XML is used increasingly for config data and data transfer as it is more of a standard. XML parsers exist for most platforms and have been written in many computer languages. On Win 32 the Microsoft XML parser is provided as an COM component.
Glossary:
A B C D E F G H I J K L M N O P Q R S T U V W X Y ZExamples:
XML and HTMl were combind to produce xhtml.

