tags:

views:

28

answers:

1

Hi all,

I am learning xml, Can anybody please help me in providing the xml text attributes using which I can manipulate the xml file.

A: 
<?xml version="1.0" encoding="UTF-8" ?>
<painting>
  <img src="madonna.jpg" alt='Foligno Madonna, by Raphael'/>
  <caption>This is Raphael's "Foligno" Madonna, painted in
    <date>1511</date>–<date>1512</date>.
  </caption>
</painting>

from WikiPedia

But XML can be whatever you want.

<?xml version="1.0" encoding="UTF-8" ?>
<items>
    <item id="1" key"some item">
        <value>some value</value>
    </item>
</items>
rockinthesixstring