home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0"?>
- <employees>
- <employee id="A1234">
- <!-- Employee name is broken into first and last -->
- <name>
- <first>John</first>
- <last>Doe</last>
- </name>
- <!--This is a comment within the <name> element-->
- <position>Programmer</position>
- <!-- Address is identified by street, city, state, zip -->
- <address>
- <!-- This is another comment -->
- <street>123 Main Street</street>
- <city>Anywhere</city>
- <state>CA</state>
- <zip>92000</zip>
- </address>
- <!-- Phone numbers can include main, home, fax, mobile -->
- <phone>
- <main>(714) 555-1000</main>
- <fax>(714) 555-1001</fax>
- </phone>
- </employee>
- </employees>
-