Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

A Newbie to XML

Status
Not open for further replies.

mike314

Programmer
Jun 24, 2003
143
US
I'm new to XML and want to learn it. I started to read the w3schools.com tutorial and I really don't understand much

Ok here is whats in question:

<book>
<title>My First XML</title>
<prod id="33-657" media="paper"></prod><chapter>Introduction to XML
<para>What is HTML</para>
<para>What is XML</para>
</chapter>

<chapter>XML Syntax
<para>Elements must have a closing tag</para>
<para>Elements must be properly nested</para>
</chapter>

</book>

That is code from the website, now this is used for what?? Is this an example of how to create tags or how to store data??

thanks any help is much appreciated
 
That is XML...

That's all there is too it...

XML is just a way to describe data using tags, in a tree like structure...

The tricky part comes in to play when you use the XML data...

since it sounds like you are familiar with the W3 Schools, check out the XML DOM, XPath, and XSLT areas...

Be sure to check out all of the Try It Yourself Examples...

That is where it starts to get FUN ;-)


PROGRAMMER: (n) Red-eyed, mumbling mammal capable of conversing with inanimate objects.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top