January 2008
| M |
T |
W |
T |
F |
S |
S |
| « Oct |
|
Feb » |
| | 1 | 2 | 3 | 4 | 5 | 6 |
| 7 | 8 | 9 | 10 | 11 | 12 | 13 |
| 14 | 15 | 16 | 17 | 18 | 19 | 20 |
| 21 | 22 | 23 | 24 | 25 | 26 | 27 |
| 28 | 29 | 30 | 31 |
|
Archives
Archive for January, 2008
XML, which stands for eXtensible Markup Language, is text-based data format (or language) that
is human readable and can be used to create arbitrary data
structures. It is designed to facilitate sharing structured
data across many different systems. Here is a simple example
of XML data:
<Person Nationality=”US”>
<Name>
<First>John</First>
<Last>Doe</Last>
</Name>
</Person>
Figure 1 - simple XML data representing a person
You’ll […]